@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@600;700&family=Nunito:wght@400;600&display=swap");

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f7f7f8;
  color: #111827;
}

.seo-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px 64px;
}

.hero{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  padding: 22px;
}

.hero h1{
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(26px, 4.5vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}

.lead{
  font-size: 16px;
  color: #374151;
  margin: 0 0 14px;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
}

.btn.primary{
  background: #E2BCFF;
  color: #000;
  box-shadow: 0 4px 0 #B796D0;
}

.btn.secondary{
  background: #D1EEC7;
  color: #000;
  box-shadow: 0 4px 0 #B2CAAA;
}

.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: #374151;
}

.section{
  margin-top: 18px;
  padding: 0 2px;
}

.section h2{
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 8px;
  font-size: 20px;
}

.card{
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 16px;
}

.steps{
  margin: 0;
  padding-left: 18px;
  color: #374151;
}

.example{
  margin-top: 10px;
}

.example-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.example-text{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
  white-space: pre-line;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f4f6;
  border: 1px dashed rgba(0,0,0,0.12);
  color: #374151;
}

.faq details{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 10px;
}

.faq summary{
  cursor: pointer;
  font-weight: 800;
}

.bottom-cta{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 18px;
}

@media (max-width: 640px){
  .cta-row{ flex-direction: column; }
  .btn{ width: 100%; }
}
