/* Pages intérieures — hero mesh, cartes, cohérence avec site-layout */

.inner-page-main {
  flex: 1;
  width: 100%;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #0a1628 0%, #1c486f 42%, #0f2847 100%);
  color: #fff;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 10% -30%, rgba(255, 154, 77, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 10%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 120%, rgba(239, 129, 33, 0.15), transparent 45%);
  pointer-events: none;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.inner-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 1rem 3.5rem;
}

@media (min-width: 768px) {
  .inner-hero-inner {
    padding: 4rem 1.5rem 4.5rem;
  }
}

.inner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 154, 77, 0.95);
  margin-bottom: 0.75rem;
}

.inner-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.inner-lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.inner-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #ff9a4d, #ef8121);
  color: #0f172a;
  box-shadow: 0 8px 28px rgba(239, 129, 33, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.inner-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(239, 129, 33, 0.4);
}

.inner-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.inner-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.inner-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

@media (min-width: 768px) {
  .inner-body {
    padding: 2.5rem 1.5rem 5rem;
  }
}

.inner-glass-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.35rem;
  box-shadow:
    0 4px 24px -8px rgba(28, 72, 111, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.inner-faq details {
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.inner-faq details[open] {
  box-shadow: 0 12px 40px -20px rgba(28, 72, 111, 0.15);
}

.inner-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inner-faq summary::-webkit-details-marker {
  display: none;
}

.inner-faq summary::after {
  content: "expand_more";
  font-family: "Material Icons";
  font-size: 1.35rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

.inner-faq details[open] summary::after {
  transform: rotate(180deg);
}

.inner-faq .inner-faq-body {
  padding: 0 1.25rem 1.15rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.inner-pricing-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 20px 50px -28px rgba(28, 72, 111, 0.25);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.inner-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -24px rgba(28, 72, 111, 0.3);
}

.inner-pricing-card--featured {
  border-color: rgba(255, 154, 77, 0.45);
  background: linear-gradient(165deg, #fff 0%, #fff7ed 55%, #fff 100%);
  box-shadow:
    0 24px 55px -22px rgba(239, 129, 33, 0.28),
    0 0 0 1px rgba(255, 154, 77, 0.2) inset;
}

.inner-pricing-badge {
  position: absolute;
  top: -0.65rem;
  right: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff9a4d, #ef8121);
  color: #0f172a;
}

.inner-contact-card {
  border-radius: 1.35rem;
  padding: 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 16px 48px -28px rgba(28, 72, 111, 0.18);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.inner-contact-card:hover {
  border-color: rgba(28, 72, 111, 0.2);
  box-shadow: 0 20px 52px -24px rgba(28, 72, 111, 0.22);
}

.inner-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

#inner-firebase-status.hidden {
  display: none;
}

/* Page boutique vendeur — couverture + avatar (comme l’app) */
.bv-store-hero {
  min-height: min(42vw, 13rem);
}

.bv-store-cover-layer {
  pointer-events: none;
}

.bv-store-cover-gradient {
  background: linear-gradient(125deg, #0a1628 0%, #1c486f 48%, #0f2847 100%);
}

.bv-store-cover-img:not(.hidden) ~ .bv-store-cover-gradient {
  opacity: 0.35;
}

.bv-store-cover-tint {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(28, 72, 111, 0.45) 45%,
    rgba(28, 72, 111, 0.25) 100%
  );
}

.bv-store-avatar-wrap {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.35rem;
  border: 4px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, #1c486f, #2a5a85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bv-store-avatar-wrap {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 1.5rem;
  }
}

.bv-store-avatar-letter {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.bv-store-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
