/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg) 0%, #FFE4E1 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badge {
  height: 50px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/* Features */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.feature-grid {
  --min: 280px;
  gap: 2rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-card pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 0.75rem 0;
}

.feature-card pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--text);
  white-space: pre;
}

/* FAQ */
.faq {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

details {
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

details summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
}

/* Comparison Pages */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table th:first-child {
  border-radius: 8px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 8px 0 0;
}

.comparison-table tr:nth-child(even) {
  background: var(--white);
}

.comparison-table tr:nth-child(odd) {
  background: var(--bg);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-cta {
  text-align: center;
  margin: 3rem 0 1rem;
}

.comparison h3 {
  color: var(--primary);
  margin-top: 1.5rem;
}

/* Sticky store CTA (intent landing pages) */
body.has-sticky-cta {
  padding-bottom: 76px;
}

.sticky-store-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

.sticky-store-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.sticky-store-cta .app-badge {
  height: 40px;
}

@media (max-width: 480px) {
  .sticky-store-cta p {
    display: none;
  }
}
