/* ===== Inner Page Styles ===== */

/* Breadcrumb */
.breadcrumb {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: .6rem 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: .82rem;
  color: var(--c-text-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.breadcrumb li::after {
  content: '›';
  color: var(--c-text-light);
}
.breadcrumb li:last-child::after { display: none; }

.breadcrumb a {
  color: var(--c-coral);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Page Hero */
.page-hero {
  background: var(--c-navy);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(232, 99, 74, .18), transparent 70%);
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.page-hero-content h1 em {
  color: var(--c-coral-light);
  font-style: italic;
}

.page-hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero-badges {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-width: 260px;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.badge-icon {
  color: var(--c-coral-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* Content Layout */
.content-layout {
  background: var(--c-cream);
  padding: var(--space-2xl) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

/* Main Content */
.content-main { min-width: 0; }

.content-section {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 1.1rem;
  line-height: 1.25;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--c-coral-pale);
}

.content-section p {
  color: var(--c-text-light);
  font-size: .96rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.content-section p:last-child { margin-bottom: 0; }

/* Prestations Grid */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.prestation-item {
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.prestation-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: .5rem;
}

.prestation-item p {
  font-size: .87rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Patho detail list */
.patho-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.patho-detail-item {
  background: var(--c-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--c-coral);
}

.patho-detail-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: .5rem;
}

.patho-detail-item h3 a {
  color: inherit;
  text-decoration: none;
}
.patho-detail-item h3 a:hover { color: var(--c-coral); }

.patho-detail-item p {
  font-size: .88rem;
  color: var(--c-text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Advantage list */
.advantage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}

.advantage-list li {
  padding: .75rem 1rem;
  background: var(--c-cream);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--c-text-light);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.advantage-list li::before {
  content: '✓';
  color: var(--c-coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.advantage-list strong {
  color: var(--c-navy);
}

/* SIDEBAR */
.content-sidebar {
  position: sticky;
  top: calc(70px + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.sidebar-cta {
  border-color: var(--c-coral);
  background: var(--c-coral-pale);
  text-align: center;
}

.sidebar-cta h3 { color: var(--c-navy); }

.sidebar-cta p {
  font-size: .88rem;
  color: var(--c-text-light);
  margin-bottom: 1rem;
}

.sidebar-phone {
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 1.05rem;
  margin-top: .75rem;
  text-decoration: none;
}
.sidebar-phone:hover { color: var(--c-coral); }

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
}

.sidebar-links li a {
  display: block;
  padding: .4rem .6rem;
  font-size: .9rem;
  color: var(--c-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}

.sidebar-links li a:hover,
.sidebar-links li a.is-current {
  background: var(--c-coral-pale);
  color: var(--c-coral);
}

.sidebar-links li a.is-current {
  font-weight: 600;
}

.sidebar-financement {
  background: var(--c-navy);
  border-color: var(--c-navy);
}

.sidebar-financement h3 { color: var(--c-white); }
.sidebar-financement p {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.sidebar-financement a {
  color: var(--c-coral-light);
  font-weight: 600;
  font-size: .9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sidebar-cta { grid-column: span 2; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-badges { display: none; }
}

@media (max-width: 600px) {
  .prestations-grid { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar-cta { grid-column: auto; }
}
