@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --primary: #FC8019;
  --primary-dark: #e06b0a;
  --primary-light: rgba(252,128,25,0.1);
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #0f0f1a;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* ─── NAV ─── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.lp-nav-logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); }
.lp-nav-cta {
  background: var(--primary); color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.lp-nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.lp-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f1422 100%);
  position: relative; overflow: hidden;
  padding: 80px 24px 100px;
  text-align: center;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(252,128,25,0.15) 0%, transparent 70%);
}
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(252,128,25,0.15); border: 1px solid rgba(252,128,25,0.3);
  color: #FC8019; font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 24px;
}
.lp-hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FC8019;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.lp-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 20px; position: relative;
}
.lp-hero h1 span { color: var(--primary); }
.lp-hero p {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 580px; margin: 0 auto 36px;
  line-height: 1.7; position: relative;
}
.lp-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 16px 36px; border-radius: 14px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  position: relative; transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(252,128,25,0.35);
}
.lp-hero-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(252,128,25,0.45); }
.lp-hero-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; position: relative;
}
.lp-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}

/* ─── STATS BAR ─── */
.lp-stats {
  background: var(--primary);
  padding: 28px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0; max-width: 100%;
}
.lp-stat {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.lp-stat:last-child { border-right: none; }
.lp-stat-value { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 900; color: #fff; }
.lp-stat-label { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 2px; }

/* ─── HOW IT WORKS ─── */
.lp-section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.lp-section-eyebrow {
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(24px, 3.5vw, 38px); font-weight: 800;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.lp-section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 520px; line-height: 1.7;
}
.lp-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.lp-step {
  background: var(--bg-gray); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── PRICING GUIDE ─── */
.lp-pricing-section {
  background: var(--bg-dark); padding: 72px 24px;
}
.lp-pricing-inner { max-width: 1100px; margin: 0 auto; }
.lp-pricing-section .lp-section-title { color: #fff; }
.lp-pricing-section .lp-section-eyebrow { color: var(--primary); }
.lp-pricing-section .lp-section-sub { color: rgba(255,255,255,0.6); }
.lp-price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 40px;
}
.lp-price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.lp-price-card:hover {
  border-color: rgba(252,128,25,0.4);
  background: rgba(252,128,25,0.05);
}
.lp-price-card-label { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.lp-price-card-range { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.lp-price-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── FAQ ─── */
.lp-faq { padding: 72px 24px; background: var(--bg-gray); }
.lp-faq-inner { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.lp-faq-q {
  padding: 18px 22px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--text);
}
.lp-faq-q:hover { background: var(--bg-gray); }
.lp-faq-q .arrow { font-size: 18px; transition: transform 0.2s; color: var(--primary); }
.lp-faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s;
}
.lp-faq-item.open .lp-faq-a { max-height: 200px; padding: 0 22px 18px; }
.lp-faq-item.open .arrow { transform: rotate(180deg); }

/* ─── EXPERTS PREVIEW ─── */
.lp-experts { padding: 72px 24px; }
.lp-experts-inner { max-width: 1100px; margin: 0 auto; }
.lp-expert-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.lp-expert-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 24px; background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-expert-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lp-expert-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-expert-name { font-size: 15px; font-weight: 700; color: var(--text); }
.lp-expert-spec { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.lp-expert-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.lp-expert-stars { color: #f59e0b; font-size: 14px; }
.lp-expert-rating-val { font-size: 13px; font-weight: 700; color: var(--text); }
.lp-expert-rating-count { font-size: 12px; color: var(--text-muted); }
.lp-expert-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.lp-expert-chip {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 3px 10px; border-radius: 20px;
}
.lp-expert-location { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ─── CTA BANNER ─── */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #e06b0a 100%);
  padding: 72px 24px; text-align: center;
}
.lp-cta-banner h2 {
  font-size: clamp(26px, 4vw, 42px); font-weight: 900;
  color: #fff; margin-bottom: 16px;
}
.lp-cta-banner p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.lp-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  padding: 16px 36px; border-radius: 14px;
  font-size: 16px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.lp-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
.lp-footer {
  background: var(--text); padding: 32px 24px;
  text-align: center;
}
.lp-footer p { font-size: 13px; color: rgba(255,255,255,0.5); }
.lp-footer a { color: var(--primary); text-decoration: none; }
.lp-footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.lp-footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
.lp-footer-links a:hover { color: var(--primary); }

/* ─── BREADCRUMB ─── */
.lp-breadcrumb {
  padding: 12px 24px; background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}
.lp-breadcrumb a { color: var(--primary); text-decoration: none; }
.lp-breadcrumb span { margin: 0 6px; }

@media (max-width: 640px) {
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 16px; }
  .lp-stat:last-child, .lp-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .lp-hero { padding: 60px 20px 80px; }
}
