﻿/* ===== NAV ACTIVE ===== */
.nav__link--active {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== HERO ===== */
.pro-hero {
  background: var(--navy-grad);
  padding: 80px 0 96px;
  text-align: center;
}

.pro-hero__inner { max-width: 1000px; margin: 0 auto; }

.pro-hero .section-eyebrow { margin-bottom: 20px; }

.pro-hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pro-hero__title strong { font-weight: 800; }

.pro-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ===== STATS ===== */
.pro-stats {
  background: #f4f6f9;
  padding: 32px 0;
}

.pro-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.pro-stat {
  background: transparent;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.pro-stat__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-stat__icon svg { width: 26px; height: 26px; }

.pro-stat__number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pro-stat__label {
  font-size: 13px;
  color: #6b7280 !important;
  font-weight: 400;
}

/* ===== OFFRE PHARE ===== */
.offre-phare {
  background: #f9f5f2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.offre-phare__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.offre-phare__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offre-phare__left strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-right: 8px;
}

.offre-phare__left span {
  font-size: 14px;
  color: var(--text-muted);
}

.offre-phare__btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* ===== PRODUCTS GRID ===== */
.pro-products {
  background: var(--white);
  padding: 72px 0;
}

.pro-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== PRO CARD ===== */
.pro-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pro-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pro-card--dark {
  background: var(--navy-grad);
  border-color: transparent;
}
.pro-card--dark .pro-card__title { color: var(--white); }
.pro-card--dark .pro-card__desc  { color: rgba(255,255,255,0.6); }
.pro-card--dark .pro-card__features li { color: rgba(255,255,255,0.85); }

.pro-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pro-card__icon--light { background: rgba(192,57,43,0.15); }
.pro-card__icon svg { width: 26px; height: 26px; }

.pro-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pro-card__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pro-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}

.pro-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.pro-card__features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pro-card__btn {
  align-self: flex-start;
  padding: 11px 22px;
  font-size: 14px;
}

/* Outline button variant for light cards */
.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn--outline-light:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== CTA PRO ===== */
.cta-pro {
  background: var(--navy-grad);
  padding: 96px 0;
  text-align: center;
}

.cta-pro__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-pro__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.pro-card,
.pro-stat,
.cta-pro__title,
.cta-pro__sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pro-card.visible,
.pro-stat.visible,
.cta-pro__title.visible,
.cta-pro__sub.visible {
  opacity: 1;
  transform: none;
}

.pro-card:nth-child(2) { transition-delay: 0.1s; }
.pro-card:nth-child(3) { transition-delay: 0.05s; }
.pro-card:nth-child(4) { transition-delay: 0.15s; }
.pro-stat:nth-child(2) { transition-delay: 0.1s; }
.pro-stat:nth-child(3) { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pro-products__grid { grid-template-columns: 1fr; }
  .pro-stats__grid { grid-template-columns: 1fr; }
  .offre-phare__inner { flex-direction: column; align-items: flex-start; }
  .pro-hero__title br { display: none; }
  .cta-pro__title br { display: none; }
}
