/* Landing page styles – matches sidebar & web view look */
body {
  margin: 0;
  font-family: 'Google Sans', Arial, sans-serif;
  color: #202124;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Hero */
.hero {
  background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
}
.hero .logo {
  width: 96px;
  /* height: 64px; */
  margin-bottom: 20px;
}
.title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-primary {
  background: #fff;
  color: #1a73e8;
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.cta-primary:hover {
  background: #f1f3f4;
}
.cta-note {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 8px;
}
/* Features section */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 60px auto;
  justify-content: center;
}
.feature-item {
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.feature-item h3 {
  color: #1a73e8;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.feature-item p {
  color: #5f6368;
  line-height: 1.5;
  margin: 0;
}

/* How it works section */
.how-it-works {
  margin: 80px auto;
  text-align: center;
}
.how-it-works h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #202124;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.step {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  padding: 20px;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #1a73e8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h3 {
  color: #202124;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p {
  color: #5f6368;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Testimonials section */
.testimonials {
  margin: 80px auto;
  text-align: center;
  background: #f8f9fa;
  padding: 60px 20px;
  border-radius: 8px;
}
.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #202124;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}
.testimonial p {
  color: #202124;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 16px;
}
.testimonial cite {
  color: #5f6368;
  font-size: 0.9rem;
  font-style: normal;
}

/* Pricing */
.pricing {
  margin: 40px auto 80px;
  text-align: center;
}
.pricing h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}
.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.plan {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 260px;
  max-width: 300px;
}
.plan h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #202124;
}
.price {
  font-size: 2rem;
  font-weight: 600;
  color: #1a73e8;
  margin: 16px 0;
}
.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #5f6368;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: #5f6368;
  text-align: left;
}
.plan ul li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.plan ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #34a853;
}
.plan-cta {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.plan-cta:hover {
  background: #1557b0;
}
.plan.free .plan-cta {
  background: transparent;
  color: #1a73e8;
  border: 1px solid #1a73e8;
}
.plan.free .plan-cta:hover {
  background: #e8f0fe;
}
/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  font-size: 0.9rem;
  color: #5f6368;
}
.footer a {
  color: #1a73e8;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .small {
  margin-top: 8px;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .hero { padding: 60px 20px 40px; }
  .features, .steps, .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-item, .step, .testimonial {
    max-width: 100%;
  }
} 