:root {
  --primary: #49f6c7;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --border: #e1e1e1;
  --container-width: 1140px;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.status-badge {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Sections */
.section-padding { padding: 120px 0; }
.bg-light { background: var(--bg-light); }

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 64px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border: 2px solid var(--primary);
  position: relative;
  transform: translateY(-8px);
}

.pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.price {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0;
}

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

.price-features {
  list-style: none;
  margin: 32px 0;
  flex-grow: 1;
}

.price-features li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: 0.2s;
}

.btn-primary {
  background: var(--text-main);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-nav {
  background: var(--primary);
  color: var(--text-main);
  padding: 10px 20px;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid, .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 36px; }
}