:root {
  --bg-dark: #080808;
  --bg-gradient-end: #0A1628;
  --blue: #2563EB;
  --blue-glow: rgba(37, 99, 235, 0.3);
  --blue-subtle: rgba(37, 99, 235, 0.08);
  --white: #F8FAFC;
  --gray-100: #E2E8F0;
  --gray-300: #94A3B8;
  --gray-500: #64748B;
  --gray-800: #1E293B;
  --green: #10B981;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === NOISE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === AMBIENT GLOW === */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb.top-right {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
}
.glow-orb.bottom-left {
  width: 400px; height: 400px;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

/* === CONTAINER === */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* === NAV === */
nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo span { color: var(--blue); }
.nav-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-subtle);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* === HERO === */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeDown 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fadeDown 0.8s 0.2s ease both;
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px var(--blue-glow), 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeDown 0.8s 0.3s ease both;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--blue-glow), 0 8px 30px rgba(0,0,0,0.4);
}
.cta-btn svg {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
}
.cta-btn:hover svg {
  transform: translateX(3px);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gray-500);
  animation: fadeDown 0.8s 0.4s ease both;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* === DIVIDER === */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  margin: 60px auto;
}

/* === PROBLEM SECTION === */
.problem {
  padding: 20px 0 40px;
  text-align: center;
}
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--white);
}
.pain-cards {
  display: grid;
  gap: 16px;
  text-align: left;
}
.pain-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}
.pain-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, var(--blue-subtle) 0%, rgba(255,255,255,0.01) 100%);
}
.pain-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
  font-weight: 300;
}

/* === WHAT YOU GET === */
.offer {
  padding: 40px 0;
}
.offer h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
.offer-grid {
  display: grid;
  gap: 20px;
}
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.offer-item:last-child { border-bottom: none; }
.offer-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
}
.offer-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.offer-item p {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.5;
  font-weight: 300;
}

/* === TOPICS === */
.topics {
  padding: 40px 0;
}
.topics h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.topics-sub {
  text-align: center;
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 36px;
  font-weight: 300;
}
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  text-align: center;
}
.topic-chip {
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: var(--blue-subtle);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-100);
  transition: all 0.3s ease;
  text-align: center;
}
.topic-chip:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--blue);
  color: var(--white);
}
.topic-chip .emoji { margin-right: 6px; }

/* === CUSTOM REQUEST === */
.custom-request {
  margin-top: 40px;
  text-align: center;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 20px;
}
.custom-request-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.custom-request h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.custom-request p {
  font-size: 0.92rem;
  color: var(--gray-300);
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.custom-btn:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 30px var(--blue-glow);
}
.custom-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}
.custom-btn:hover svg {
  transform: translateX(3px);
}

/* === PRICING CARD === */
.pricing {
  padding: 60px 0;
}
.price-card {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.08) 0%, rgba(255,255,255,0.02) 50%, rgba(37, 99, 235, 0.04) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.price-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.price-amount span {
  font-size: 1.2rem;
  color: var(--gray-500);
  font-weight: 400;
}
.price-desc {
  font-size: 0.95rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  font-weight: 300;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-100);
}
.price-feature svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--blue);
}

/* === FAQ === */
.faq {
  padding: 40px 0 60px;
}
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 36px;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.faq-q {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.faq-a {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
  font-weight: 300;
}

/* === FINAL CTA === */
.final-cta {
  text-align: center;
  padding: 40px 0 100px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--blue);
}
.final-cta p {
  color: var(--gray-300);
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 300;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* === ANIMATIONS === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .hero { padding: 50px 0 40px; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .price-card { padding: 36px 24px; }
  .cta-btn { width: 100%; justify-content: center; padding: 18px 24px; }
  .topic-chips { gap: 8px; }
  .topic-chip { padding: 10px 16px; font-size: 0.82rem; }
  .custom-request { padding: 28px 20px; }
  .custom-btn { width: 100%; justify-content: center; }
}
