/* Public AEO / SEO content pages — does not affect checkout or dashboard */
.aeo-wrap { padding-top: 5.5rem; }
.aeo-hero {
  padding: 2.4rem 0 1.2rem;
}
.aeo-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .7rem;
}
.aeo-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 1rem;
}
.aeo-lead {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 46rem;
  margin: 0 0 1.4rem;
}
.aeo-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.aeo-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.aeo-crumbs a { color: var(--text-2); }
.aeo-crumbs a:hover { color: var(--brand); }
.aeo-section { padding: 1.6rem 0; }
.aeo-section h2 {
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin: 0 0 .85rem;
}
.aeo-section h3 {
  font-size: 1.08rem;
  margin: 1.2rem 0 .45rem;
}
.aeo-section p, .aeo-section li { color: var(--text-2); }
.aeo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.aeo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.15rem 1.2rem;
}
.aeo-card h3 { margin-top: 0; color: var(--text); }
.aeo-def {
  background: linear-gradient(180deg, rgba(255,31,46,.12), rgba(18,23,35,.9));
  border: 1px solid rgba(255,31,46,.28);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem;
  margin: 0 0 1.5rem;
}
.aeo-def strong { color: var(--text); }
.aeo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
}
.aeo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: .92rem;
}
.aeo-table th, .aeo-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.aeo-table th {
  color: var(--text);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255,255,255,.03);
}
.aeo-table td { color: var(--text-2); }
.aeo-table a { color: var(--text); font-weight: 600; }
.aeo-ol, .aeo-ul { padding-left: 1.15rem; }
.aeo-ol li, .aeo-ul li { margin: .35rem 0; }
.aeo-steps {
  counter-reset: aeo-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.aeo-steps li {
  counter-increment: aeo-step;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem 1rem 3.4rem;
  position: relative;
}
.aeo-steps li::before {
  content: counter(aeo-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aeo-steps h3 { margin: 0 0 .3rem; color: var(--text); }
.aeo-cta {
  margin: 2rem 0 1rem;
  padding: 1.4rem;
  border-radius: var(--r);
  border: 1px solid rgba(255,31,46,.3);
  background: rgba(255,31,46,.08);
  text-align: center;
}
.aeo-cta p { color: var(--text-2); margin: 0 0 1rem; }
.aeo-faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin: .55rem 0;
  padding: .2rem .9rem;
}
.aeo-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: .75rem 0;
  color: var(--text);
}
.aeo-faq .faq-body { color: var(--text-2); padding: 0 0 .85rem; }
.aeo-countries {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.aeo-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .82rem;
  color: var(--text-2);
}
.aeo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
  font-size: .88rem;
  margin-top: 1rem;
}
.aeo-plan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: 1.4rem;
  align-items: start;
}
.aeo-price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
}
.aeo-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .aeo-plan-hero { grid-template-columns: 1fr; }
  .aeo-hero { padding-top: 1.4rem; }
}
