/* invoiceful.app — moofment.app inspired design */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.47;
  color: #1d1d1f;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
}

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
}
.nav-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; height: 70px;
}
.nav-logo { font-size: 20px; font-weight: 600; color: #1d1d1f; text-decoration: none; }
.nav-logo span { color: #007aff; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 400; color: #1d1d1f; text-decoration: none; letter-spacing: -0.01em; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.7; }
.nav-links .cta {
  background: #007aff; color: #fff; padding: 8px 18px; border-radius: 20px; font-weight: 500;
}
.nav-links .cta:hover { background: #0051d5; opacity: 1; }

/* HERO */
.hero {
  text-align: center; padding: 100px 24px 80px; max-width: 800px; margin: 0 auto;
}
.hero h1 {
  font-size: 56px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 20px;
}
.hero h1 span { color: #007aff; }
.hero p { font-size: 21px; color: #86868b; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #007aff; color: #fff; padding: 16px 36px; border-radius: 14px;
  font-size: 17px; font-weight: 500; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,122,255,0.3);
}
.hero-cta:hover { background: #0051d5; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,122,255,0.4); }
.hero-badge {
  display: inline-block; margin-top: 24px; font-size: 13px; color: #86868b;
  padding: 6px 14px; background: #f5f5f7; border-radius: 20px;
}

/* SCREENSHOT */
.screenshot-section { padding: 40px 24px 80px; text-align: center; }
.screenshot-section img {
  max-width: 1000px; width: 100%; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}

/* FEATURES */
.features { padding: 80px 24px; max-width: 1100px; margin: 0 auto; border-top: 1px solid #f5f5f7; }
.features h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; text-align: center; margin-bottom: 16px; }
.features > p { text-align: center; color: #86868b; font-size: 19px; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-card { }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.003em; }
.feature-card p { font-size: 15px; color: #86868b; line-height: 1.6; }

/* PRICING */
.pricing { padding: 80px 24px; background: #f5f5f7; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.pricing > .pricing-inner > p { color: #86868b; font-size: 19px; margin-bottom: 48px; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
  background: #fff; border-radius: 20px; padding: 40px 32px; text-align: left;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pricing-card.featured { border: 2px solid #007aff; }
.pricing-card .badge {
  display: inline-block; background: #007aff; color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 10px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.pricing-card .price { font-size: 40px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: #86868b; }
.pricing-card .period { font-size: 14px; color: #86868b; margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li { padding: 8px 0; font-size: 15px; color: #1d1d1f; padding-left: 24px; position: relative; }
.pricing-card ul li::before { content: "\2713"; position: absolute; left: 0; color: #007aff; font-weight: 600; }
.pricing-card .btn {
  display: block; text-align: center; padding: 14px; border-radius: 12px;
  font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.2s;
}
.pricing-card .btn-primary { background: #007aff; color: #fff; }
.pricing-card .btn-primary:hover { background: #0051d5; }
.pricing-card .btn-secondary { background: #f5f5f7; color: #1d1d1f; }
.pricing-card .btn-secondary:hover { background: #e8e8ed; }

/* CTA */
.cta-section {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}
.cta-section h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-section p { font-size: 19px; color: #86868b; margin-bottom: 36px; }

/* FOOTER */
footer { border-top: 1px solid #f5f5f7; padding: 40px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #86868b; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #1d1d1f; }
.footer-text { font-size: 12px; color: #86868b; }

/* LEGAL */
.legal { max-width: 800px; margin: 0 auto; padding: 60px 24px 80px; }
.legal h1 { font-size: 36px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em; }
.legal .updated { font-size: 14px; color: #86868b; margin-bottom: 40px; }
.legal h2 { font-size: 24px; font-weight: 600; margin-top: 40px; margin-bottom: 16px; }
.legal h3 { font-size: 18px; font-weight: 600; margin-top: 24px; margin-bottom: 12px; }
.legal p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.legal ul, .legal ol { margin-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; line-height: 1.7; font-size: 16px; }
.legal a { color: #007aff; text-decoration: none; }
.legal a:hover { opacity: 0.7; }
.legal strong { font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  .features h2, .pricing h2, .cta-section h2 { font-size: 28px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.cta) { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
}
