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

/* ─── 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: 76vh;
  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: 36px;
  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: 44px;
  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: 72px 0 100px;
}

/* 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; }

/* ─── PRODUCT SECTIONS ───────────────────────────────────── */
.product-section { margin-bottom: 60px; }
.product-section:last-child { margin-bottom: 0; }
.ps-header { margin-bottom: 28px; }
.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: 44px;
  align-items: center;
}
.intro-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 38px;
  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: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(91,155,213,.2);
  margin-bottom: 4px;
}
.iv-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.iv-desc { font-size: .855rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 22px; }
.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: 500px; }

/* ─── RELATED PRODUCTS ───────────────────────────────────── */
.related-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
}
.related-header { text-align: center; margin-bottom: 44px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  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-products { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .product-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .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; }
}
@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; }
  .product-hero-kpis { flex-wrap: wrap; gap: 14px; }
  .kpi-item:not(:last-child) { border-right: none; margin-right: 0; }
  .product-hero-actions { flex-direction: column; }
  .product-hero-actions .btn { justify-content: center; }
}
