:root {
  --primary: #2E7D32;
  --primary-light: #4CAF50;
  --primary-dark: #1B5E20;
  --accent: #FF6F00;
  --bg: #FAFAFA;
  --text: #212121;
  --text-secondary: #616161;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --card-bg: #FFFFFF;
  --success: #43A047;
  --pro-color: #7B1FA2;
  --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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; }

/* Navigation */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 32px; }
.hero-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); text-decoration: none; }

/* Sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Video Placeholder */
.video-section { text-align: center; }
.video-placeholder {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #E8E8E8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  border: 2px dashed var(--border);
}

/* Image Placeholders */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #E8E8E8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 2px dashed var(--border);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 750px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.popular { border-color: var(--primary); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.pricing-trial { color: var(--success); font-weight: 600; margin: 8px 0 16px; font-size: 0.95rem; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { padding: 6px 0; color: var(--text-secondary); }
.pricing-features li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.pricing-btn:hover { background: var(--primary-dark); text-decoration: none; color: var(--white); }

/* Footer */
.footer {
  background: var(--text);
  color: #9E9E9E;
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-col h4 { color: var(--white); margin-bottom: 12px; }
.footer-col a { color: #9E9E9E; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid #424242;
  font-size: 0.9rem;
  text-align: center;
}

/* Legal pages */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .legal-date { color: var(--text-secondary); margin-bottom: 32px; }
.legal h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; color: var(--primary-dark); }
.legal h3 { font-size: 1.1rem; margin-top: 20px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--text-secondary); margin-bottom: 12px; }
.legal ul { padding-left: 24px; margin-bottom: 12px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal th, .legal td { padding: 10px 16px; border: 1px solid var(--border); text-align: left; }
.legal th { background: #F5F5F5; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
