:root {
  --primary: #2196F3;
  --primary-dark: #1976D2;
  --accent: #00BCD4;
  --text: #1a1a2e;
  --text-secondary: #555;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e8e8e8;
  --radius: 12px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.app-store-badge {
  display: inline-block;
}

.app-store-badge img {
  height: 54px;
}

/* Features */
.features {
  padding: 60px 0;
}

.features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-card .feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Pricing */
.pricing {
  padding: 60px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.pricing .pricing-subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: left;
}

.pricing-card.pro {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.pro::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card ul {
  list-style: none;
}

.pricing-card ul li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card ul li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

/* Privacy / Footer */
.privacy-banner {
  padding: 40px 0;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}

.privacy-banner h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.privacy-banner p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

footer .footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

footer .copyright {
  font-size: 13px;
  color: #999;
}

/* Legal pages */
.legal {
  padding: 48px 0 80px;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Support page */
.support-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.support-hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.contact-card a {
  font-size: 20px;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero .subtitle { font-size: 17px; }
  .pricing-cards { grid-template-columns: 1fr; }
  nav ul { gap: 16px; }
  nav ul a { font-size: 13px; }
}
