/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--brand-50) 50%, var(--accent-50) 100%);
}

.hero h1 {
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--neutral-500);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__standards {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--neutral-400);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__standards span {
  padding: 0.375rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-200);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-500);
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--neutral-500);
  font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  min-width: 600px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 600;
}

.comparison-table .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
}

.comparison-table .cross {
  color: var(--neutral-300);
}

.comparison-table .highlight-col {
  background: var(--brand-50);
}

/* Deployment Options */
.deploy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deploy-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.deploy-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.deploy-card h3 {
  margin-bottom: 0.5rem;
}

.deploy-card p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--brand-500);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--brand-200);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pricing-card--featured {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-500);
}

.pricing-card__desc {
  color: var(--neutral-500);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-card .check-list {
  margin-bottom: 1.5rem;
}

.pricing-card .check-list li {
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  cursor: default;
}

.faq-item p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  margin: 0;
}
