/* ============================================
   LANDING PAGE — DANQUERE
   Handcrafted Designer SaaS Aesthetic
   Dark Navy Tone, Zero Emojis, 100% Responsive
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-body {
  position: relative;
  background-color: #050713;
  color: #ffffff;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

/* ── Frosted Blur Background Stage (Dark Navy Bokeh) ── */
.lp-bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-bg-img {
  position: absolute;
  inset: -36px;
  background-image: url('/background_dekstop.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: blur(28px) brightness(0.24) saturate(115%);
  -webkit-filter: blur(28px) brightness(0.24) saturate(115%);
  transform: scale(1.08);
  will-change: transform, filter;
}

.lp-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(13, 22, 48, 0.78) 0%, rgba(5, 7, 19, 0.96) 100%);
}

.landing-body > *:not(.lp-bg-stage):not(.lp-mobile-menu) {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lp-bg-img {
    background-image: url('/background_mobile.jpg');
    filter: blur(24px) brightness(0.22) saturate(110%);
    -webkit-filter: blur(24px) brightness(0.22) saturate(110%);
  }
}

/* ── Top Navigation Bar ── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5, 8, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  flex: 1;
}

.lp-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lp-link:hover {
  color: #38bdf8;
}

.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Nav CTA Button */
.lp-btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lp-btn-nav-cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* Hamburger Toggle Button */
.lp-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.lp-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile Navigation Dropdown */
.lp-mobile-menu {
  display: none;
}

/* ── Standard Buttons ── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: #ffffff;
  color: #050713;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.lp-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.28);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.lp-btn-lg {
  padding: 13px 26px;
  font-size: 14.5px;
  border-radius: 12px;
}

/* ── Section Containers ── */
.lp-section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 32px;
}

.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.lp-section-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.lp-section-title {
  font-size: clamp(25px, 3.8vw, 34px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lp-section-desc {
  font-size: 14.5px;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.62;
}

/* ── Hero Section ── */
.lp-hero-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 136px 32px 64px;
}

.lp-hero-content {
  flex: 1;
  max-width: 600px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.lp-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.lp-title-accent {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-sub {
  font-size: 15.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 32px;
}

/* Hero Action Buttons */
.lp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Primary Blue CTA Button */
.lp-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.lp-btn-hero-primary:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.lp-hero-btn-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.lp-hero-btn-arrow {
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.lp-btn-hero-primary:hover .lp-hero-btn-arrow {
  transform: translateX(2px);
}

/* Hero Secondary / Tertiary Dark Card Buttons */
.lp-btn-hero-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: rgba(13, 19, 36, 0.75);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.lp-btn-hero-card:hover {
  background: rgba(19, 28, 54, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  transform: translateY(-1px);
}

/* ── Hero Visual & 3D Podium ── */
.lp-hero-visual-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.lp-podium-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 10px;
}

.lp-hero-logo {
  width: clamp(160px, 18vw, 210px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 28px rgba(37, 99, 235, 0.45));
  animation: lp-float 5s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.lp-podium {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -18px;
  z-index: 1;
}

.lp-podium-ring {
  width: 220px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #38bdf8;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.35) 0%, rgba(13, 22, 48, 0.92) 75%);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.65), inset 0 0 14px rgba(56, 189, 248, 0.45);
}

.lp-podium-cylinder {
  width: 236px;
  height: 28px;
  margin-top: -17px;
  border-radius: 0 0 50% 50% / 0 0 22px 22px;
  background: linear-gradient(180deg, #131d36 0%, #070a14 100%);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-top: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
}

/* ── 4 Quick Trust Highlights (Exact from Reference Design) ── */
.lp-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
  margin-top: 26px;
  padding: 0 6px;
}

.lp-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 19, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-highlight-icon svg {
  width: 18px;
  height: 18px;
}

.lp-highlight-item:hover .lp-highlight-icon {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.4);
}

.lp-highlight-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 7px;
  white-space: nowrap;
}

/* ── Platform Metrics Bar ── */
.lp-metrics-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.lp-metrics-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(13, 19, 36, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lp-metric-item {
  display: flex;
  flex-direction: column;
}

.lp-metric-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-metric-label {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 4px;
}

/* ── Features Grid (Keunggulan Teknologi) ── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  background: rgba(13, 19, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lp-feature-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.lp-feature-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ── Group Finder Spotlight ── */
.lp-spotlight-wrap {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lp-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.lp-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-spotlight-title {
  font-size: clamp(23px, 3.4vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.lp-spotlight-desc {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 0 22px;
}

.lp-spotlight-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-spotlight-mock {
  background: rgba(9, 14, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.lp-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-mock-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.lp-mock-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  white-space: nowrap;
}

.lp-mock-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-mock-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lp-mock-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.lp-mock-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-mock-info {
  min-width: 0;
  flex: 1;
}

.lp-mock-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-mock-sub {
  font-size: 11px;
  color: #34d399;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-mock-badge {
  font-size: 11px;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(0, 122, 255, 0.12);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── How It Works (3 Steps) ── */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-step-card {
  background: rgba(13, 19, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
  position: relative;
}

.lp-step-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.lp-step-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.lp-step-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ── Pricing 6-Tier Grid ── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-price-card {
  background: rgba(13, 19, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.35);
}

.lp-price-card.popular {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1.5px solid #38bdf8;
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.2);
}

.lp-popular-pill {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #38bdf8;
  color: #050713;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-price-plan {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-price-card.popular .lp-price-plan {
  color: #38bdf8;
}

.lp-price-val {
  margin: 10px 0 4px;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.lp-price-duration {
  font-size: 12px;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 16px;
}

.lp-price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.lp-price-card.popular .lp-price-features {
  color: #ffffff;
  border-top-color: rgba(56, 189, 248, 0.25);
}

.lp-price-feature-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-price-btn {
  margin-top: 20px;
  width: 100%;
  padding: 11px;
  text-align: center;
  justify-content: center;
}

/* ── FAQ ── */
.lp-faq-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 32px;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-faq-item {
  background: rgba(13, 19, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
}

.lp-faq-q {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.lp-faq-a {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
}

/* ── CTA ── */
.lp-cta-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 70px;
}

.lp-cta-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.14) 0%, rgba(99, 102, 241, 0.12) 100%);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.lp-cta-title {
  font-size: clamp(23px, 3.8vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.lp-cta-sub {
  font-size: 14.5px;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ── Footer ── */
.lp-footer {
  width: 100%;
  padding: 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lp-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-footer-copy {
  font-size: 12px;
  color: #64748b;
}

/* ============================================
   RESPONSIVE DESIGN (MOBILE & TABLET OVERHAUL)
   Handcrafted Designer SaaS Experience
   ============================================ */

@media (max-width: 1024px) {
  .lp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  /* Navigation */
  .lp-nav {
    height: 60px;
    padding: 0 18px;
  }
  .lp-nav-links,
  .lp-btn-nav-listbot {
    display: none !important;
  }
  .lp-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lp-btn-nav-cta {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
  }

  /* Mobile Navigation Slide-Down Drawer */
  .lp-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(7, 10, 22, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 20px 24px;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  }
  .lp-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .lp-mobile-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.15s ease;
  }
  .lp-mobile-link:hover {
    color: #38bdf8;
  }
  .lp-mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
  }
  .lp-mobile-auth {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }

  /* Padding adjustments across all sections */
  .lp-section-container,
  .lp-metrics-section,
  .lp-faq-container,
  .lp-cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Section Headers: Clean Left-Alignment */
  .lp-section-header {
    text-align: left;
    margin: 0 0 32px;
  }
  .lp-section-tag {
    font-size: 11px;
  }
  .lp-section-title {
    text-align: left;
    font-size: 24px;
    line-height: 1.25;
  }
  .lp-section-desc {
    text-align: left;
    font-size: 14px;
    margin-top: 8px;
  }

  /* Hero: Proportional, Left-Aligned Handcrafted Layout */
  .lp-hero-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 86px 18px 36px;
    min-height: unset;
    gap: 24px;
  }
  .lp-hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .lp-badge {
    margin-bottom: 16px;
  }
  .lp-title {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.15;
    text-align: left;
    margin-bottom: 14px;
  }
  .lp-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
    text-align: left;
    color: #94a3b8;
  }
  .lp-hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .lp-btn-hero-primary,
  .lp-btn-hero-card {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    justify-content: center;
  }
  .lp-btn-hero-primary {
    font-size: 14.5px;
  }
  .lp-btn-hero-card {
    font-size: 14px;
  }

  /* Hero Visual & 3D Podium on Mobile */
  .lp-hero-visual-wrap {
    width: 100%;
    margin-top: 20px;
  }
  .lp-podium-wrap {
    padding: 10px 0 0;
  }
  .lp-hero-logo {
    width: 155px;
  }
  .lp-podium-ring {
    width: 190px;
    height: 32px;
  }
  .lp-podium-cylinder {
    width: 204px;
    height: 24px;
    margin-top: -15px;
  }

  /* Quick Trust Highlights on Mobile */
  .lp-hero-highlights {
    max-width: 100%;
    gap: 8px;
    margin-top: 22px;
    padding: 0;
  }
  .lp-highlight-icon {
    width: 42px;
    height: 42px;
  }
  .lp-highlight-icon svg {
    width: 17px;
    height: 17px;
  }
  .lp-highlight-label {
    font-size: 11px;
    margin-top: 6px;
  }

  /* Platform Metrics Bar */
  .lp-metrics-card {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 16px;
  }
  .lp-metric-num {
    font-size: 24px;
  }
  .lp-metric-label {
    font-size: 11.5px;
  }

  /* Features Grid */
  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-feature-card {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .lp-feature-title {
    font-size: 15.5px;
  }
  .lp-feature-desc {
    font-size: 13.5px;
  }

  /* Spotlight Section */
  .lp-spotlight-wrap {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .lp-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lp-spotlight-title {
    font-size: 22px;
  }
  .lp-spotlight-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .lp-spotlight-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .lp-spotlight-btns > * {
    width: 100%;
    justify-content: center;
    height: 46px;
    border-radius: 12px;
  }
  .lp-spotlight-mock {
    padding: 16px 14px;
    border-radius: 14px;
  }

  /* 3 Steps */
  .lp-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-step-card {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .lp-step-num {
    font-size: 28px;
  }
  .lp-step-title {
    font-size: 15.5px;
  }
  .lp-step-desc {
    font-size: 13.5px;
  }

  /* Pricing 6-Tier Grid */
  .lp-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-price-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .lp-price-val {
    font-size: 28px;
  }

  /* FAQ */
  .lp-faq-item {
    padding: 16px 16px;
    border-radius: 12px;
  }
  .lp-faq-q {
    font-size: 14.5px;
  }
  .lp-faq-a {
    font-size: 13px;
  }

  /* CTA Section */
  .lp-cta-card {
    padding: 32px 18px;
    border-radius: 20px;
  }
  .lp-cta-title {
    font-size: 22px;
  }
  .lp-cta-sub {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .lp-cta-card .lp-btn-primary {
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
  }

  /* Footer */
  .lp-footer {
    padding: 28px 18px;
  }
  .lp-footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .lp-brand span {
    font-size: 16px;
  }
  .lp-brand-logo {
    width: 24px;
    height: 24px;
  }
}
