@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-deep: #b45309;
  --teal: #1E656D;
  --teal-dark: #164a50;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-900: #0f172a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-gray { color: var(--gray-400); }
.serif { font-family: 'Playfair Display', serif; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; border-radius: 12px; font-weight: 700;
  font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease;
  cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  background: rgba(245, 158, 11, 0.1); color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 16px 0; backdrop-filter: blur(20px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-brand img { height: 40px; width: 40px; border-radius: 8px; }
.navbar-brand span { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.navbar-links { display: flex; gap: 32px; align-items: center; }
.navbar-links a { color: var(--gray-400); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.navbar-links a:hover { color: var(--white); }
.nav-cta { padding: 10px 24px !important; font-size: 0.9rem !important; }

/* ── HERO ── */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--navy) 0%, #0c1322 60%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(30, 101, 109, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; }
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--gold), #fbbf24, var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle { font-size: 1.25rem; color: var(--gray-400); max-width: 640px; margin: 0 auto 16px; line-height: 1.7; }
.hero .price-tag { font-size: 1.1rem; color: var(--gray-300); margin-bottom: 40px; }
.hero .price-tag strong { color: var(--gold); font-size: 1.8rem; font-weight: 800; }
.hero .price-tag s { color: var(--gray-500); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-image {
  max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image img { width: 100%; height: auto; display: block; }

/* ── TRUST BAR ── */
.trust-bar { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-bar .container { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-400); font-size: 0.95rem; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── PROBLEM ── */
.problem { padding: 100px 0; background: linear-gradient(180deg, var(--navy) 0%, #0d1829 100%); }
.section-label { text-align: center; margin-bottom: 16px; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 20px; }
.section-subtitle { text-align: center; color: var(--gray-400); font-size: 1.1rem; max-width: 600px; margin: 0 auto 60px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 48px; }
.pain-card {
  padding: 24px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.3s;
}
.pain-card:hover { border-color: rgba(239, 68, 68, 0.3); }
.pain-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pain-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.pain-card p { color: var(--gray-400); font-size: 0.9rem; }
.cost-callout {
  text-align: center; padding: 40px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(239,68,68,0.02));
  border: 1px solid rgba(239,68,68,0.15);
}
.cost-callout .amount { font-size: 3rem; font-weight: 800; color: #ef4444; font-family: 'Playfair Display', serif; }
.cost-callout p { color: var(--gray-400); margin-top: 8px; }

/* ── FEATURES ── */
.features { padding: 100px 0; background: var(--navy); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.6; }

/* ── SCREENSHOTS ── */
.screenshots { padding: 100px 0; background: linear-gradient(180deg, var(--navy) 0%, #0d1829 100%); }
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; margin-top: 60px; }
.screenshot-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.3s; }
.screenshot-card:hover { transform: scale(1.02); }
.screenshot-card img { width: 100%; height: auto; display: block; }
.screenshot-card .caption {
  padding: 20px; background: rgba(255,255,255,0.03);
  text-align: center; font-weight: 600;
}

/* ── VALUE STACK ── */
.value-stack { padding: 100px 0; background: var(--navy); }
.value-table { max-width: 700px; margin: 0 auto; }
.value-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-row:last-child { border-bottom: none; }
.value-row .label { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.value-row .label span:first-child { font-size: 1.3rem; }
.value-row .price { color: var(--gray-400); font-size: 1.05rem; }
.value-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; margin-top: 24px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.03));
  border: 1px solid rgba(245,158,11,0.2);
}
.value-total .label { font-size: 1.2rem; font-weight: 700; }
.value-total .price { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.your-price {
  text-align: center; margin-top: 48px; padding: 48px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(245,158,11,0.08), rgba(30,101,109,0.05));
  border: 1px solid rgba(245,158,11,0.15);
}
.your-price .old-price { font-size: 1.3rem; color: var(--gray-500); text-decoration: line-through; }
.your-price .new-price { font-size: 4rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; display: block; margin: 8px 0; }
.your-price .one-time { font-size: 1.1rem; color: var(--gray-300); margin-bottom: 24px; }

/* ── TECH SPECS ── */
.tech-specs { padding: 100px 0; background: linear-gradient(180deg, var(--navy), #0d1829); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.tech-card {
  padding: 24px; border-radius: 12px; text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.tech-card .icon { font-size: 2rem; margin-bottom: 12px; }
.tech-card h4 { font-weight: 700; margin-bottom: 6px; }
.tech-card p { color: var(--gray-400); font-size: 0.9rem; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--navy); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.faq-item p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* ── GUARANTEE ── */
.guarantee {
  padding: 80px 0; text-align: center;
}
.guarantee-box {
  max-width: 650px; margin: 0 auto; padding: 48px;
  border-radius: 20px; border: 2px solid rgba(245,158,11,0.2);
  background: linear-gradient(145deg, rgba(245,158,11,0.05), transparent);
}
.guarantee-box h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.guarantee-box p { color: var(--gray-400); font-size: 1.05rem; line-height: 1.7; }

/* ── CTA FINAL ── */
.cta-final {
  padding: 100px 0; text-align: center;
  background: linear-gradient(180deg, var(--navy), #0a0f1e);
}
.cta-final h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-final p { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 40px; }

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero { padding: 120px 0 60px; }
  .pain-grid, .feature-grid, .screenshot-grid, .tech-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .trust-bar .container { gap: 24px; }
  .your-price .new-price { font-size: 3rem; }
}
