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

body {
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: #202124;
  background: #fff;
  line-height: 1.6;
}

/* Nav */
nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f5ff 50%, #f8f9fa 100%);
  padding-bottom: 80px;
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 0;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.hero-sub {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #1a73e8;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}

.cta-btn:hover {
  background: #1765cc;
  transform: translateY(-1px);
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #9aa0a6;
}

/* Features */
.features {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.features h2, .how-it-works h2, .pricing h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #1a1a2e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: left;
}

.feature-card {
  padding: 28px;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #e8f5ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.5;
}

/* How it works */
.how-it-works {
  background: #f8f9fa;
  padding: 80px 24px;
  text-align: center;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step-card {
  background: white;
  padding: 32px 28px;
  border-radius: 12px;
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #53BDEB;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #5f6368;
}

/* Privacy */
.privacy {
  background: #f0faf3;
  padding: 80px 24px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.privacy-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.privacy-sub {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.5;
}

.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.privacy-point svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-point span {
  font-size: 14px;
  color: #3c4043;
  line-height: 1.5;
}

/* Pricing */
.pricing {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.pricing-sub {
  font-size: 16px;
  color: #5f6368;
  margin-top: -32px;
  margin-bottom: 48px;
}

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

.price-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
}

.price-card.featured {
  background: white;
  border: 2px solid #53BDEB;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #53BDEB;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #5f6368;
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.price-card li {
  font-size: 14px;
  color: #3c4043;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #34a853;
  font-weight: 700;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: #f1f3f4;
  color: #3c4043;
  transition: background 0.2s;
}

.price-btn:hover {
  background: #e8eaed;
}

.featured-btn {
  background: #1a73e8;
  color: white;
}

.featured-btn:hover {
  background: #1765cc;
}

/* Footer */
footer {
  background: #f8f9fa;
  padding: 40px 24px;
  text-align: center;
}

.footer-content {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 13px;
  color: #9aa0a6;
}

/* Responsive */
.feature-icon {
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features h2, .how-it-works h2, .pricing h2, .privacy-text h2 {
    font-size: 26px;
  }
}

/* RTL */
[dir="rtl"] .feature-card,
[dir="rtl"] .step-card,
[dir="rtl"] .price-card {
  text-align: right;
}

[dir="rtl"] .price-card li {
  padding-left: 0;
  padding-right: 24px;
}

[dir="rtl"] .price-card li::before {
  left: auto;
  right: 0;
}
