/* Pro page: wider layout than legal pages */
:root { --max: 1100px; }

/* ── CONTAINER (not in legal.css) ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── PAGE HERO ADDITIONS ── */
.page-hero-sub {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 1rem 0 2rem;
}

.btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-pro:hover { background: var(--gold-light); }

/* ── SECTIONS ── */
.pro-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}
.pro-section--alt  { background: var(--light-bg-alt); }
.pro-section--dark { background: var(--black-soft); }

.pro-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pro-section-header { margin-bottom: 3rem; }

.pro-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--light-text);
  line-height: 1.15;
}
.pro-section--dark .pro-section-header h2,
.pro-section--dark h2 { color: var(--ink); }

/* ── OFFRE GRID ── */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pro-card {
  background: #fff;
  border: 1px solid var(--light-border);
  padding: 2.25rem 2rem;
  transition: border-color 0.2s;
}
.pro-card:hover { border-color: var(--light-border-strong); }

.pro-card-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pro-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.25rem;
}

.pro-card-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 500;
  margin-bottom: 1rem;
}

.pro-card > p:last-child {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--light-text-muted);
}

/* ── TYPES ── */
.pro-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pro-type svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-dim);
  margin-bottom: 1rem;
  display: block;
}

.pro-type h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.pro-type p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--light-text-muted);
}

/* ── PROCESS ── */
.pro-process { max-width: 680px; }

.pro-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pro-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.pro-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-border-strong);
  color: var(--gold-dim);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 0.4rem;
}

.pro-step p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--light-text-muted);
}

/* ── CTA SECTION ── */
.pro-cta-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.pro-section--dark .pro-label { color: var(--gold); }
.pro-section--dark p { color: var(--ink-muted); margin-bottom: 0.75rem; }

.pro-cta-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  align-items: flex-start;
}

.pro-mail {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.pro-mail:hover { color: var(--gold-light); }

.pro-note {
  font-size: 0.8rem !important;
  color: var(--ink-dim) !important;
  margin-bottom: 0 !important;
  line-height: 1.7;
}

.pro-cta-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: rgba(255,255,255,0.03);
}

.pro-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}
.pro-cta-row:last-child { border-bottom: none; }

.pro-cta-label {
  color: var(--ink-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pro-cta-value { color: var(--ink-muted); }

/* ── BRASSIN À FAÇON — VOLUMES ── */
.facon-volumes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.facon-vol {
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--light-border);
  text-align: center;
}

.facon-vol-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.facon-vol p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--light-text-muted);
}

/* ── BRASSIN À FAÇON HIGHLIGHT ── */
.pro-highlight {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.pro-highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.pro-highlight-content { flex: 1; }

.pro-highlight-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pro-highlight-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.pro-highlight-content p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.btn-pro-outline {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-pro-outline:hover { background: var(--gold); color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pro-types      { grid-template-columns: repeat(2, 1fr); }
  .pro-cta-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container           { padding: 0 1.5rem; }
  .pro-section         { padding: 4rem 0; }
  .pro-grid            { grid-template-columns: 1fr; }
  .pro-types           { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pro-highlight-inner { flex-direction: column; align-items: flex-start; }
  .facon-volumes       { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pro-types      { grid-template-columns: 1fr; }
}
