/* Page Créateur de sites — phancommerce */

body.page-createur {
  margin: 0;
  font-family: var(--m-font);
  background: var(--m-bg);
  color: var(--m-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.cr-wrap {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.cr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
}

.cr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--m-text);
  font-weight: 800;
  font-size: 1.05rem;
}

.cr-logo img {
  width: 36px;
  height: 36px;
}

.cr-top__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--m-teal);
  text-decoration: none;
}

.cr-hero {
  padding: 28px 0 36px;
  text-align: center;
}

.cr-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--m-teal-soft);
  color: var(--m-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cr-hero p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--m-muted);
  font-size: 1.02rem;
}

.cr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.cr-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  padding: 22px 20px;
  box-shadow: var(--m-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cr-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.cr-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.cr-card__tagline {
  margin: 0;
  color: var(--m-muted);
  font-size: 0.92rem;
}

.cr-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.cr-card li {
  margin-bottom: 6px;
}

.cr-card li strong {
  color: var(--m-teal-dark);
}

.cr-card--boutique { border-top: 4px solid var(--m-teal); }
.cr-card--ecole { border-top: 4px solid var(--m-blue); }
.cr-card--bar { border-top: 4px solid #7c3aed; }
.cr-card--resto { border-top: 4px solid var(--m-gold); }

.cr-card--bar .cr-card__tagline,
.cr-card--resto .cr-card__tagline {
  color: var(--m-teal-dark, #0f766e);
  font-weight: 600;
}

.cr-section {
  margin-bottom: 44px;
}

.cr-section__head {
  text-align: center;
  margin-bottom: 24px;
}

.cr-section__head h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.cr-section__head p {
  margin: 0;
  color: var(--m-muted);
  font-size: 0.95rem;
}

.cr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.cr-step {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-sm);
  padding: 18px 16px;
}

.cr-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--m-teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cr-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cr-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--m-muted);
}

.cr-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.cr-perk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--m-surface);
  border-radius: var(--m-radius-sm);
  padding: 14px;
  border: 1px solid var(--m-border);
  font-size: 0.9rem;
}

.cr-perk span:first-child {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.cr-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--m-teal) 0%, var(--m-teal-dark) 100%);
  color: #fff;
  border-radius: var(--m-radius);
  padding: 32px 24px;
  margin-bottom: 48px;
}

.cr-cta h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.cr-cta p {
  margin: 0 auto 20px;
  max-width: 32rem;
  opacity: 0.92;
  font-size: 0.95rem;
}

.cr-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: #fff;
  color: var(--m-teal-dark);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
}

.cr-cta__btn:hover {
  filter: brightness(0.97);
}

.cr-cta__pdf {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.cr-cta__pdf a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cr-foot {
  text-align: center;
  padding-bottom: 32px;
  color: var(--m-muted);
  font-size: 0.82rem;
}

.cr-foot a {
  color: var(--m-teal);
}

@media (max-width: 600px) {
  .cr-hero {
    padding-top: 12px;
  }
}
