/* Shared styles for content / SEO pages */
:root {
  color: #1a202c;
  background: #f7fafc;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 0, rgba(237, 137, 54, 0.08), transparent 40rem),
    radial-gradient(circle at 0 100%, rgba(26, 54, 93, 0.06), transparent 36rem),
    #f7fafc;
}

a { color: #2b6cb0; }
a:hover { color: #1a365d; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a365d;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.site-nav a {
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover { color: #1a365d; }

.page-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.page-card {
  padding: 32px;
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(26, 54, 93, 0.06);
}

h1 {
  margin: 0 0 12px;
  color: #1a365d;
  font-size: clamp(28px, 5vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lead {
  margin: 0 0 28px;
  color: #4a5568;
  font-size: 18px;
}

h2 {
  margin: 28px 0 10px;
  color: #2d3748;
  font-size: 20px;
}

p, li { color: #4a5568; }

ol, ul { padding-left: 22px; }
li { margin: 8px 0; }

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 24px;
  border-radius: 12px;
  background: #ed8936;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.cta-button:hover {
  background: #dd6b20;
  color: white;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 12px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a365d;
  color: white;
  font-weight: 800;
  font-size: 14px;
}

.preview-banner-img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26, 54, 93, 0.12);
}

.export-card-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

@media (min-width: 560px) {
  .export-card-grid { grid-template-columns: 1fr 1fr; }
}

.export-card {
  display: block;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f7fafc;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.export-card:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
}

.export-card h2 {
  margin: 0 0 8px;
  color: #1a365d;
  font-size: 20px;
}

.export-card p {
  margin: 0 0 12px;
  font-size: 15px;
}

.export-card-link {
  color: #ed8936;
  font-size: 14px;
  font-weight: 700;
}

.export-card:hover .export-card-link { color: #dd6b20; }

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child { border-bottom: 0; }

.faq-item h2 {
  margin-top: 0;
  font-size: 17px;
}

.site-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  color: #718096;
  font-size: 13px;
}

.site-footer p { margin: 4px 0; }

@media (max-width: 600px) {
  .page-card { padding: 22px; }
  .site-header { flex-direction: column; align-items: flex-start; }
}
