:root {
  --brand: #e91e8c;
  --brand-dark: #c2186b;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #fffafb;
  --card: #ffffff;
  --border: #f0d4e4;
  --max: 720px;
  --wide: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand);
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand);
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
}

.site-nav a:hover {
  color: var(--brand);
}

.lang-switch a {
  font-weight: 600;
}

.lang-switch .active {
  color: var(--brand);
  text-decoration: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

main.wide {
  max-width: var(--wide);
}

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero .lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.badge {
  display: inline-block;
  background: #fce4f1;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
  color: #fff !important;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark) !important;
  border: 2px solid var(--brand);
}

.btn-secondary:hover {
  background: #fce4f1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.disclaimer {
  background: #fff8e6;
  border: 1px solid #f0d878;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin: 2rem 0;
}

.disclaimer strong {
  display: block;
  margin-bottom: 0.25rem;
}

.legal h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal section {
  margin-bottom: 1.75rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.legal p,
.legal li {
  font-size: 0.95rem;
}

.legal ul,
.legal ol {
  padding-left: 1.25rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.75rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq dt {
  font-weight: 600;
  margin-top: 1.25rem;
}

.faq dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--brand);
}
