@charset "UTF-8";

.section-metiers {
  --gf-bg: #ffffff;
  --gf-surface: #f7f8fb;
  --gf-text: #0f172a;
  --gf-muted: #5b6477;
  --gf-border: rgba(15, 23, 42, 0.1);
  --gf-primary: #5b7cfa;
  --gf-accent: #ff7a59;
  --gf-mint: #22c55e;
  --gf-radius: 18px;
  --gf-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.section-metiers.gf-approach {
  /* background:
    radial-gradient(900px 420px at 12% 8%, rgba(91, 124, 250, 0.1), transparent 60%),
    radial-gradient(820px 420px at 92% 18%, rgba(255, 122, 89, 0.1), transparent 55%),
    var(--gf-bg); */
  padding: clamp(56px, 6vw, 92px) 18px;
}

.section-metiers .gf-approach__container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-metiers .gf-approach__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.section-metiers .gf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--gf-border);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: var(--gf-muted);
  font: 600 12px/1.1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-metiers .gf-approach__header h2 {
  margin: 14px 0 8px;
  color: var(--gf-text);
  font: 800 clamp(26px, 3.2vw, 38px) / 1.05 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: -0.02em;
}

.section-metiers .gf-approach__sub {
  margin: 0;
  color: var(--gf-muted);
  font: 500 15px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.section-metiers .gf-approach__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.section-metiers .gf-card {
  grid-column: span 3;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gf-border);
  border-radius: var(--gf-radius);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.section-metiers .gf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 160px at 20% 0%, rgba(91, 124, 250, 0.1), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.section-metiers .gf-card--accent::before {
  background: radial-gradient(420px 160px at 20% 0%, rgba(255, 122, 89, 0.16), transparent 55%);
}

.section-metiers .gf-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--gf-shadow);
  border-color: rgba(91, 124, 250, 0.22);
}

.section-metiers .gf-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--gf-border);
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.12), rgba(255, 122, 89, 0.1));
  color: var(--gf-text);
  font: 800 16px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  margin-bottom: 12px;
}

.section-metiers .gf-card h3 {
  margin: 0 0 6px;
  color: var(--gf-text);
  font: 800 16px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: -0.01em;
}

.section-metiers .gf-card p {
  margin: 0;
  color: var(--gf-muted);
  font: 500 14px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.section-metiers .gf-card--accent {
  border-color: rgba(255, 122, 89, 0.28);
}

.section-metiers .gf-card--accent .gf-card__icon {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(91, 124, 250, 0.1));
}

.section-metiers .gf-approach__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.section-metiers .gf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--gf-primary), var(--gf-accent));
  box-shadow: 0 14px 30px rgba(91, 124, 250, 0.22);
  font: 800 14px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.section-metiers .gf-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 122, 89, 0.2);
  filter: saturate(1.05);
}

.section-metiers .gf-link {
  color: var(--gf-text);
  text-decoration: none;
  font: 700 14px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.section-metiers .gf-link:hover {
  border-color: var(--gf-border);
  background: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .section-metiers .gf-card {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .section-metiers .gf-approach__header {
    text-align: left;
  }

  .section-metiers .gf-approach__cta {
    justify-content: flex-start;
  }

  .section-metiers .gf-card {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-metiers .gf-card,
  .section-metiers .gf-btn {
    transition: none;
  }
}
