/* Page "Certifications" - Styles spécifiques uniquement */

/* Variables de style */
:root {
  --accent: #f28c28;
  --accent-2: #2d9cdb;
  --bg-soft: #f6f7f9;
  --card-bg: #ffffff;
  --muted: #58606b;
  --text: #111217;
}

/* Page Hero */
.page-hero {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: #ecf0f1;
  margin-top: 15px;
}

/* Intro Section */
.intro-section {
  background: var(--card-bg);
  padding: 56px 0;
}

.intro-content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.intro-content p + p {
  margin-top: 14px;
}

.lead {
  font-weight: 800;
  color: var(--text);
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

/* Certifications Grid - MINIMALISTE */
.certifications-section {
  background: var(--bg-soft);
  padding: 60px 0;
}

.certifications-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.cert-card {
  background: var(--card-bg);
  padding: 30px;
  border: 1px solid rgba(17, 18, 23, 0.06);
  transition: transform 0.3s;
}

.cert-card:hover {
  transform: translateY(-3px);
}

.cert-card .cert-icon {
  width: 60px;
  height: 60px;
  background: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cert-card .cert-icon i {
  font-size: 28px;
  color: white;
}

.cert-card h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #ff6600;
  padding-bottom: 10px;
}

.cert-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Commitment Section - MINIMALISTE */
.commitment-section {
  background: var(--card-bg);
  padding: 80px 0;
}

.commitment-section h2 {
  text-align: center;
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 50px;
  font-weight: 800;
}

.commitment-content {
  max-width: 980px;
  margin: 0 auto;
}

.commitment-item {
  background: var(--bg-soft);
  padding: 26px 22px;
  border: 1px solid rgba(17, 18, 23, 0.06);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-3px);
}

.commitment-item .commitment-icon {
  width: 50px;
  height: 50px;
  background: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commitment-item .commitment-icon i {
  font-size: 22px;
  color: white;
}

.commitment-item .commitment-text h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
}

.commitment-item .commitment-text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* CTA Section - MINIMALISTE */
.cta-section {
  background: var(--bg-soft);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(17, 18, 23, 0.03);
}

.cta-content h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background: #e8491d;
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #c73d17;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commitment-section {
    padding: 60px 0;
  }

  .commitment-item {
    flex-direction: column;
    padding: 20px;
  }

  .commitment-item .commitment-icon {
    margin: 0 auto 15px;
  }

  .page-hero {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 40px 0;
  }

  .intro-content {
    font-size: 16px;
    padding: 0 15px;
  }

  .lead {
    font-size: 22px;
  }

  .certifications-section,
  .commitment-section,
  .cta-section {
    padding: 40px 0;
  }

  .cert-card {
    padding: 20px;
  }

  .commitment-content {
    padding: 0 15px;
  }
}