/* ============================================================
   ACE COVER — Product Pages
   Design v2.0 — Cohérent avec style.css
============================================================ */

/* ─── HERO QUICK FORM ────────────────────────────────────── */
.hero-quick-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 4px;
}
.hqf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hqf-input {
  width: 100%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--white);
  font-size: .875rem;
  font-family: inherit;
  transition: background .2s, border-color .2s;
  outline: none;
}
.hqf-input::placeholder { color: rgba(255,255,255,.42); }
.hqf-input:focus {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.55);
}
.hqf-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sidebar lien partenaire */
.sqc-partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 0;
  font-size: .825rem;
  font-weight: 600;
  color: rgba(255,255,255,.48);
  transition: color .2s;
  text-decoration: none;
}
.sqc-partner-link:hover { color: rgba(255,255,255,.85); }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 13px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue); font-weight: 600; transition: color .2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb span { color: var(--gray-800); font-weight: 600; }

/* ─── PRODUCT HERO ───────────────────────────────────────── */
.product-hero {
  min-height: 62vh;
  background: var(--navy-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.product-hero-img {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(8,29,62,.98) 0%,
    rgba(13,43,94,.95) 30%,
    rgba(13,43,94,.84) 52%,
    rgba(13,43,94,.45) 72%,
    rgba(13,43,94,.12) 100%
  );
}
.product-hero-grid {
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent);
}
.product-hero-blob {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.product-hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(91,155,213,.05);
  top: -120px; right: -80px;
}
.product-hero-blob-2 {
  width: 260px; height: 260px;
  background: rgba(28,109,208,.12);
  bottom: -60px; left: 80px;
}

.product-hero-content {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 80px 0 88px;
}

/* Eyebrow + category */
.product-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.product-hero-icon {
  width: 48px; height: 48px;
  background: rgba(91,155,213,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(91,155,213,.25);
  flex-shrink: 0;
}
.product-hero-icon svg { width: 24px; height: 24px; stroke: var(--blue-light); stroke-width: 1.75; }
.product-hero-cat {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-light);
}

/* Title & desc */
.product-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.product-hero-title em { font-style: normal; color: var(--blue-light); }
.product-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 560px;
}
.product-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.product-hero-actions .btn { font-size: .9rem; padding: 13px 28px; }

/* KPIs */
.product-hero-kpis {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.kpi-item { text-align: left; padding: 0 28px 0 0; }
.kpi-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); margin-right: 28px; }
.kpi-val {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 5px;
}
.kpi-label { font-size: .77rem; color: rgba(255,255,255,.45); }

/* Right side card */
.product-hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 30px;
  min-width: 270px;
  max-width: 290px;
}
.phc-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 16px;
}
.phc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.phc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.82);
  font-weight: 500;
}
.phc-list li .phc-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(91,155,213,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(91,155,213,.25);
}
.phc-list li .phc-dot svg { width: 11px; height: 11px; stroke: var(--blue-light); stroke-width: 2.5; fill: none; }

/* ─── PRODUCT LAYOUT (main + sidebar) ───────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 44px 0 60px;
}

/* Sidebar */
.product-sidebar { position: sticky; top: 90px; }

.sidebar-quote-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 30px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.sidebar-quote-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(91,155,213,.06);
  pointer-events: none;
}
.sqc-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.sqc-sub { font-size: .82rem; color: rgba(255,255,255,.48); margin-bottom: 22px; line-height: 1.55; }
.sqc-btn {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: 13px; font-size: .875rem; font-weight: 700;
  cursor: pointer; transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(28,109,208,.3);
}
.sqc-btn:hover { background: var(--blue-hover); transform: translateY(-2px); }
.sqc-btn svg { width: 16px; height: 16px; }
.sqc-phone {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.45);
  padding-top: 10px;
}
.sqc-phone svg { width: 13px; height: 13px; stroke: var(--blue-light); }
.sqc-phone a { color: var(--blue-light); font-weight: 700; }

.sidebar-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  margin-bottom: 16px;
}
.sic-title {
  font-size: .78rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.sic-list { display: flex; flex-direction: column; gap: 10px; }
.sic-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .855rem; color: var(--gray-700);
}
.sic-list li svg { width: 15px; height: 15px; stroke: var(--blue); flex-shrink: 0; }

.sidebar-products {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1.5px solid var(--gray-100);
}
.sp-title {
  font-size: .78rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.sp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--trans);
  cursor: pointer;
  text-decoration: none;
}
.sp-item:last-child { border-bottom: none; }
.sp-item:hover .sp-name { color: var(--blue); }
.sp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.sp-name { font-size: .875rem; font-weight: 600; color: var(--navy); transition: color .2s; flex: 1; }
.sp-arrow { width: 14px; height: 14px; stroke: var(--gray-300); flex-shrink: 0; }

/* ─── HELPERS ────────────────────────────────────────────── */
.intro-text { font-size: .95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }
.intro-text:last-child { margin-bottom: 0; }
.gr-header { background: var(--off-white); }
.gr-header .gr-name { font-weight: 800; color: var(--navy); }
.gr-header .gr-badge { background: var(--navy); color: var(--white); }
.section-tag--center { justify-content: center; }

/* ─── PRODUCT SECTIONS ───────────────────────────────────── */
.product-section { margin-bottom: 40px; }
.product-section:last-child { margin-bottom: 0; }
.ps-header { margin-bottom: 18px; }
.ps-title {
  font-size: 1.4rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.ps-title::before {
  content: '';
  display: block; width: 4px; height: 22px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-light));
  border-radius: 4px; flex-shrink: 0;
}
.ps-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.7; }

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.coverage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--trans);
  display: flex; gap: 14px; align-items: flex-start;
}
.coverage-card:hover {
  border-color: rgba(28,109,208,.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.cc-icon {
  width: 46px; height: 46px;
  background: var(--blue-faint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.coverage-card:hover .cc-icon { background: var(--blue); }
.cc-icon svg { width: 20px; height: 20px; stroke: var(--blue); transition: stroke .2s; stroke-width: 1.8; }
.coverage-card:hover .cc-icon svg { stroke: var(--white); }
.cc-title { font-size: .925rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cc-desc { font-size: .81rem; color: var(--gray-500); line-height: 1.55; }
.coverage-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Profile Cards */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: var(--trans);
}
.profile-card:hover { border-color: rgba(28,109,208,.25); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.profile-icon {
  width: 60px; height: 60px;
  background: var(--blue-faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: var(--trans);
}
.profile-card:hover .profile-icon { background: var(--blue); }
.profile-icon svg { width: 26px; height: 26px; stroke: var(--blue); transition: stroke .2s; }
.profile-card:hover .profile-icon svg { stroke: var(--white); }
.profile-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.profile-desc { font-size: .825rem; color: var(--gray-500); line-height: 1.6; }

/* Guarantee Table */
.guarantee-list {
  display: flex; flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
}
.guarantee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  transition: background .2s;
}
.guarantee-row:last-child { border-bottom: none; }
.guarantee-row:hover { background: var(--off-white); }
.gr-name { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.gr-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 700;
  white-space: nowrap;
}
.gr-badge.included { background: var(--success-bg); color: var(--success); }
.gr-badge.option { background: var(--blue-faint); color: var(--blue); }

/* Intro two-col */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.intro-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.intro-visual::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(91,155,213,.06);
}
.iv-big-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(91,155,213,.2);
  margin-bottom: 4px;
}
.iv-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.iv-desc { font-size: .855rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 14px; }
.iv-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.iv-tag {
  background: rgba(91,155,213,.14);
  border: 1px solid rgba(91,155,213,.22);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: .76rem; font-weight: 600;
  color: var(--blue-light);
}

/* ─── FAQ (product pages) ────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-size: .9rem; font-weight: 700; color: var(--navy);
  background: none; border: none; cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-icon svg { width: 13px; height: 13px; stroke: var(--gray-600); stroke-width: 2.5; transition: transform .3s, stroke .2s; fill: none; }
.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.78;
}
.faq-item.open .faq-answer { max-height: 800px; }

/* ─── RELATED PRODUCTS ───────────────────────────────────── */
.related-section {
  background: var(--off-white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
}
.related-header { text-align: center; margin-bottom: 24px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-slow);
  display: flex; flex-direction: column;
  text-decoration: none;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(28,109,208,.2); }
.related-card-header {
  padding: 26px 26px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.related-card-header::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  transform: translate(30px,40px);
}
.rc-icon {
  width: 46px; height: 46px;
  background: rgba(91,155,213,.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(91,155,213,.22);
}
.rc-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); }
.rc-title { font-size: 1rem; font-weight: 800; color: var(--white); }
.rc-sub { font-size: .79rem; color: rgba(255,255,255,.42); margin-top: 4px; }
.related-card-body { padding: 20px 26px 26px; flex: 1; }
.rc-desc { font-size: .845rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.rc-link {
  font-size: .835rem; font-weight: 700;
  color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.related-card:hover .rc-link { gap: 10px; }
.rc-link svg { width: 13px; height: 13px; stroke: var(--blue); }

/* ─── PRODUCT RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-download-card,
  .sidebar-products { grid-column: 1 / -1; }
}

/* ── Tablette ≤ 1024px ── */
@media (max-width: 1024px) {
  .product-hero-content { padding: 56px 0 64px; }
  .product-layout { padding: 36px 0 52px; }
}

@media (max-width: 900px) {
  .product-hero-content { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 56px; }
  .product-hero-card { display: none; }
  .product-hero-bg {
    background: linear-gradient(180deg, rgba(8,29,62,.97) 0%, rgba(13,43,94,.93) 100%) !important;
  }
  .coverage-grid-3 { grid-template-columns: 1fr 1fr; }
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .intro-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .product-hero-content { padding: 36px 0 44px; }
  .product-hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .product-hero-desc { font-size: .97rem; }
  .product-hero-actions { flex-direction: column; }
  .product-hero-actions .btn { justify-content: center; width: 100%; max-width: 320px; }
  .product-hero-kpis { flex-wrap: wrap; gap: 14px; padding-top: 22px; }
  .kpi-item:not(:last-child) { border-right: none; margin-right: 0; }
  .kpi-val { font-size: 1.5rem; }
  .product-layout { padding: 28px 0 40px; }
  .ps-title { font-size: 1.2rem; }
  .product-section { margin-bottom: 32px; }
  .faq-question { font-size: .875rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; }
}

/* ── Petit mobile ≤ 640px ── */
@media (max-width: 640px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-grid-3 { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .product-sidebar { display: flex; flex-direction: column; }
  .intro-visual { padding: 20px; }
}

/* ── Très petit mobile ≤ 480px ── */
@media (max-width: 480px) {
  .product-hero-content { padding: 28px 0 36px; }
  .product-hero-title { font-size: clamp(1.8rem, 8.5vw, 2.3rem); }
  .product-hero-desc { font-size: .92rem; }
  .product-hero-kpis { gap: 12px; }
  .kpi-val { font-size: 1.3rem; }
  .kpi-label { font-size: .72rem; }
  .faq-question { font-size: .84rem; padding: 14px 16px; gap: 12px; }
  .faq-answer-inner { padding: 0 16px 14px; font-size: .84rem; }
  .guarantee-row { padding: 11px 14px; gap: 10px; }
  .gr-name { font-size: .82rem; }
  .gr-badge { font-size: .68rem; padding: 3px 9px; }
  .coverage-card { padding: 15px; gap: 11px; }
  .cc-title { font-size: .88rem; }
  .sidebar-quote-card, .sidebar-info-card { padding: 20px; }
  .sqc-title { font-size: .97rem; }
  .ps-title { font-size: 1.05rem; }
  .ps-desc { font-size: .85rem; }
  .tre-card { padding: 10px 11px; }
  .product-layout { padding: 22px 0 36px; }
}

/* ── Sidebar download card ───────────────────────────────── */
.sidebar-download-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.sdc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.sdc-name {
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
}
.sdc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.sdc-btn:hover { background: var(--navy-dark, #0a1628); }

/* ── TRE Industry Families Grid ─────────────────────────── */
.tre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tre-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  padding: 12px 13px;
  transition: border-color .2s, box-shadow .2s;
}
.tre-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(10,92,220,.07);
}
.tre-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--off-white);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.tre-icon svg { width: 15px; height: 15px; stroke: currentColor; }
.tre-body { min-width: 0; }
.tre-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.3;
}
.tre-desc {
  font-size: .72rem;
  color: var(--gray-500);
  line-height: 1.35;
}
@media (max-width: 900px) { .tre-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tre-grid { grid-template-columns: 1fr; } }


/* ─── BANDEAU "TROUVER UN COURTIER" ──────────────────────── */
/* ─── SECTION "TROUVER UN COURTIER" ──────────────────────── */
.find-broker-band {
  background: var(--navy-dark, #0a1228);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Cercles décoratifs en arrière-plan */
.find-broker-band::before,
.find-broker-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.find-broker-band::before {
  width: 480px; height: 480px;
  top: -180px; right: -100px;
  background: radial-gradient(circle, rgba(28,109,208,.18) 0%, transparent 70%);
}
.find-broker-band::after {
  width: 320px; height: 320px;
  bottom: -120px; left: -60px;
  background: radial-gradient(circle, rgba(10,92,245,.12) 0%, transparent 70%);
}

.fbb-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.fbb-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(10,92,245,.25);
  border: 1px solid rgba(10,92,245,.4);
  color: #7AB8FF;
  font-size: .67rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
  margin-bottom: 18px;
}
.fbb-tag svg { width: 8px; height: 8px; fill: #7AB8FF; }

.fbb-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.fbb-title em {
  font-style: normal;
  color: #7AB8FF;
}

.fbb-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}

.fbb-trust {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.fbb-trust span {
  font-size: .78rem;
  color: rgba(255,255,255,.32);
  font-weight: 500;
}
.fbb-trust-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}

/* Carte glassmorphism droite */
.fbb-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 36px 32px;
  width: 280px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fbb-card::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(10,92,245,.10);
  pointer-events: none;
}

.fbb-card-icon {
  width: 64px; height: 64px;
  background: rgba(28,109,208,.22);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.fbb-card-icon svg {
  width: 30px; height: 30px;
  stroke: #7AB8FF; fill: none;
}

.fbb-card-stat {
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.fbb-card-label {
  font-size: .8rem; color: rgba(255,255,255,.42);
  margin-bottom: 22px; line-height: 1.4;
}

.fbb-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  background: var(--cobalt, #1c6dd0);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: .92rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(10,92,245,.4);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.fbb-btn:hover {
  background: #1558b0;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10,92,245,.5);
}
.fbb-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }

@media (max-width: 860px) {
  .fbb-inner { grid-template-columns: 1fr; gap: 36px; }
  .fbb-card { width: 100%; max-width: 340px; }
  .find-broker-band { padding: 60px 0; }
}
@media (max-width: 480px) {
  .fbb-title { font-size: 1.6rem; }
  .find-broker-band { padding: 48px 0; }
}
