/**
 * Pont visuel : contenu HTML d'origine + design Bruce Wayne TV v2
 * Actif avec body.bwtv-v2
 */

body.bwtv-v2 {
  padding-top: var(--header-h);
  background: var(--bg);
  color: var(--text);
}

body.bwtv-v2 .header-area,
body.bwtv-v2 .footer-area {
  display: none !important;
}

/* Grille (remplace Bootstrap layout) */
body.bwtv-v2 .container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

body.bwtv-v2 .row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

body.bwtv-v2 [class*="col-"] {
  padding: 0 0.75rem 1.5rem;
  width: 100%;
}

@media (min-width: 576px) {
  body.bwtv-v2 .col-sm-6 { width: 50%; }
  body.bwtv-v2 .col-sm-10 { width: 83.333%; }
  body.bwtv-v2 .col-sm-offset-1 { margin-left: 8.333%; }
  body.bwtv-v2 .col-sm-offset-2 { margin-left: 16.666%; }
}

@media (min-width: 768px) {
  body.bwtv-v2 .col-md-3 { width: 25%; }
  body.bwtv-v2 .col-md-4 { width: 33.333%; }
  body.bwtv-v2 .col-md-6 { width: 50%; }
  body.bwtv-v2 .col-md-7 { width: 58.333%; }
  body.bwtv-v2 .col-md-8 { width: 66.666%; }
  body.bwtv-v2 .col-md-10 { width: 83.333%; }
  body.bwtv-v2 .col-md-11 { width: 91.666%; }
  body.bwtv-v2 .col-md-offset-1 { margin-left: 8.333%; }
  body.bwtv-v2 .col-md-offset-2 { margin-left: 16.666%; }
  body.bwtv-v2 .col-md-offset-5 { margin-left: 41.666%; }
  body.bwtv-v2 .hidden-sm { display: block !important; }
  body.bwtv-v2 .hidden-xs { display: block !important; }
  body.bwtv-v2 .hidden-md.hidden-sm.hidden-xs { display: block !important; }
}

@media (max-width: 767px) {
  body.bwtv-v2 .hidden-sm,
  body.bwtv-v2 .hidden-xs,
  body.bwtv-v2 .hidden-md.hidden-sm.hidden-xs {
    display: none !important;
  }
}

body.bwtv-v2 .text-center { text-align: center; }
body.bwtv-v2 .text-right { text-align: right; }
body.bwtv-v2 .pull-right { float: right; }

/* Hero / slider */
body.bwtv-v2 .slider-area {
  position: relative;
  min-height: min(88vh, 720px);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

body.bwtv-v2 .slider-active {
  position: relative;
  height: min(88vh, 720px);
}

body.bwtv-v2 .slider-active .slider-items {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  z-index: 0;
}

body.bwtv-v2 .slider-active .slider-items.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

body.bwtv-v2 .slider-active .slider-items > img.slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.bwtv-v2 .slider-active .single-slider,
body.bwtv-v2 .slider-active .single-slider2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, rgba(7,7,12,0.92) 0%, rgba(7,7,12,0.55) 50%, rgba(7,7,12,0.35) 100%);
  z-index: 2;
}

body.bwtv-v2 .slider-active .single-slider h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}

body.bwtv-v2 .slider-active .single-slider p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

body.bwtv-v2 .slider-active .single-slider a {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, var(--accent), #e8940f);
  color: #0a0a0f !important;
  font-weight: 600;
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

body.bwtv-v2 .slider-active .single-slider a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
  color: #0a0a0f !important;
}

body.bwtv-v2 .bwtv-slider-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

body.bwtv-v2 .bwtv-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}

body.bwtv-v2 .bwtv-slider-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Sections générales */
body.bwtv-v2 .about-area,
body.bwtv-v2 .service-page-area,
body.bwtv-v2 .contact-area,
body.bwtv-v2 .pricing-area,
body.bwtv-v2 .tetsmonial-area {
  padding: 4.5rem 0;
  background: var(--bg);
}

body.bwtv-v2 .bg-1 { background: var(--bg-elevated) !important; }
body.bwtv-v2 .bg-2 { background: var(--bg-card) !important; }

body.bwtv-v2 .section-title h2,
body.bwtv-v2 .about-wrap h3,
body.bwtv-v2 .service-page-wrap h3,
body.bwtv-v2 .working-time-wrap h2,
body.bwtv-v2 .contact-area .section-title h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

body.bwtv-v2 .section-title p,
body.bwtv-v2 .about-wrap p,
body.bwtv-v2 .service-page-wrap p,
body.bwtv-v2 .panel-body p {
  color: var(--text-muted);
}

body.bwtv-v2 .ptb-130 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
body.bwtv-v2 .pt-130 { padding-top: 4.5rem; }

/* About + accordion */
body.bwtv-v2 .about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

body.bwtv-v2 .panel-group .panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

body.bwtv-v2 .panel-heading {
  padding: 0;
}

body.bwtv-v2 .panel-title a {
  display: block;
  padding: 1rem 1.25rem;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

body.bwtv-v2 .panel-title a:hover {
  color: var(--accent) !important;
}

body.bwtv-v2 .panel-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

body.bwtv-v2 .panel-collapse {
  display: none;
}

body.bwtv-v2 .panel-collapse.in,
body.bwtv-v2 .panel-collapse.show {
  display: block;
}

/* Stats */
body.bwtv-v2 .fanfact-area {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1a1030 0%, var(--bg-card) 50%, #0f1a2e 100%) !important;
  border-block: 1px solid var(--border);
}

body.bwtv-v2 .fanfact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
}

body.bwtv-v2 .fanfact-content h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

body.bwtv-v2 .fanfact-content h3.counter {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent) !important;
  margin: 0;
}

body.bwtv-v2 .fanfact-icon i {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.7;
}

/* Parallax service bands */
body.bwtv-v2 .working-time-area.parallax {
  padding: 4rem 0;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: scroll;
  position: relative;
}

body.bwtv-v2 .working-time-area[data-bg-image="img/devweb.jpg"] {
  background-image: url("../../img/devweb.jpg");
}

body.bwtv-v2 .working-time-area[data-bg-image="img/setup20k.jpg"] {
  background-image: url("../../img/setup20k.jpg");
}

body.bwtv-v2 .fanfact-area.bg-img-2 {
  background: linear-gradient(135deg, #1a1030 0%, var(--bg-card) 50%, #0f1a2e 100%) !important;
}

body.bwtv-v2 .working-time-area.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 12, 0.82);
}

body.bwtv-v2 .working-time-area .container {
  position: relative;
  z-index: 1;
}

body.bwtv-v2 .working-time-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

body.bwtv-v2 .working-time-wrap li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

body.bwtv-v2 .working-time-wrap li span.pull-right {
  color: #fff;
  font-weight: 500;
}

body.bwtv-v2 .service-page-img img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* Cagnottes */
body.bwtv-v2 .pricing-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}

body.bwtv-v2 .pricing-wrap:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.35);
}

body.bwtv-v2 .pricing-wrap > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

body.bwtv-v2 .pricing-wrap .pricing h2 {
  font-size: 1.05rem;
  color: var(--accent);
  padding: 1rem 1rem 0;
}

body.bwtv-v2 .pricing-wrap > p {
  padding: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

body.bwtv-v2 .pricing-wrap .btn,
body.bwtv-v2 .pricing-wrap .btn-primary {
  display: inline-flex;
  margin: 0 1rem 1.25rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--accent), #e8940f) !important;
  color: #0a0a0f !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}

/* Contact */
body.bwtv-v2 .contact-wrap ul {
  list-style: none;
  padding: 0;
}

body.bwtv-v2 .contact-wrap li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

body.bwtv-v2 .contact-wrap li i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

body.bwtv-v2 .contact-wrap li p span {
  color: #fff;
  display: block;
}

/* Témoignages */
body.bwtv-v2 .tetsmonial-area {
  background: var(--bg-elevated) !important;
}

body.bwtv-v2 .test-items {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0.5rem;
}

body.bwtv-v2 .test-items h2 {
  color: var(--accent);
  font-size: 1.1rem;
}

body.bwtv-v2 .test-items p {
  color: var(--text-muted);
  font-style: italic;
}

body.bwtv-v2 .test-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

/* Tarifs (si section active) */
body.bwtv-v2 .pricing-content h2 { color: #fff; }
body.bwtv-v2 .pricing-content h3 { color: var(--accent); font-size: 1.75rem; }
body.bwtv-v2 .pricing-wrap ul {
  list-style: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}
body.bwtv-v2 .pricing-wrap ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
body.bwtv-v2 .pricing-wrap button {
  margin: 0 1.25rem 1.25rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}
body.bwtv-v2 .pricing-wrap.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-dim);
}

/* Formulaire externe */
body.bwtv-v2 .contact-area iframe,
body.bwtv-v2 [data-role="form"] {
  max-width: 100%;
  margin: 0 auto 2rem;
  display: block;
}

/* Font Awesome dans le contenu */
body.bwtv-v2 .fa { color: var(--accent); }

/* Skip br tags excess */
body.bwtv-v2 br:empty { display: none; }

/* Main landmark */
body.bwtv-v2 .bwtv-main { display: block; }

/* Fil d'Ariane pages intérieures */
body.bwtv-v2 .breadcumb-area {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: var(--bg-elevated) !important;
  border-bottom: 1px solid var(--border);
}

body.bwtv-v2 .breadcumb-wrap h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

body.bwtv-v2 .breadcumb-wrap ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

body.bwtv-v2 .breadcumb-wrap ul a { color: var(--accent); }

body.bwtv-v2 .breadcumb-area.bg-img-5 {
  background: linear-gradient(rgba(7, 7, 12, 0.72), rgba(7, 7, 12, 0.88)),
    url(../images/4.jpg) center / cover no-repeat !important;
}

body.bwtv-v2 .breadcumb-area.black-opacity::before {
  display: none;
}

body.bwtv-v2 .single-team-area,
body.bwtv-v2 .service-page-area,
body.bwtv-v2 .pricing-area .section-title h2 {
  color: #fff;
}

body.bwtv-v2 .progress-bar {
  background: var(--accent) !important;
}

body.bwtv-v2 .progress {
  background: var(--bg-card);
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
}

/* Bandeau partenaires (pages services) */
body.bwtv-v2 .bwtv-partner-bar {
  background: linear-gradient(90deg, rgba(26, 179, 235, 0.2), rgba(245, 166, 35, 0.12));
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

body.bwtv-v2 .bwtv-partner-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

body.bwtv-v2 .bwtv-partner-bar a {
  color: var(--accent);
  font-weight: 600;
}

body.bwtv-v2 .bwtv-partner-bar__sep {
  opacity: 0.35;
}

/* Page Montage PC */
body.bwtv-v2 .page-hero--montage {
  padding-top: 2.5rem;
}

body.bwtv-v2 .page-hero--montage h1 span {
  color: var(--accent);
}

body.bwtv-v2 .page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

body.bwtv-v2 .page-hero__lead {
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

body.bwtv-v2 .page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

body.bwtv-v2 .montage-intro {
  padding: 4.5rem 0;
}

body.bwtv-v2 .montage-intro__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

body.bwtv-v2 .montage-intro__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.bwtv-v2 .montage-intro__highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.75rem;
}

body.bwtv-v2 .montage-intro__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  color: var(--text);
}

body.bwtv-v2 .montage-intro__highlights .fa {
  color: var(--accent);
  margin-top: 0.2rem;
}

body.bwtv-v2 .montage-uses {
  padding: 4.5rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

body.bwtv-v2 .montage-steps {
  padding: 4.5rem 0;
}

body.bwtv-v2 .montage-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

body.bwtv-v2 .montage-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

body.bwtv-v2 .montage-step:hover {
  border-color: rgba(245, 166, 35, 0.35);
}

body.bwtv-v2 .montage-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #0a0a0f;
  background: linear-gradient(135deg, var(--accent), #e8940f);
  border-radius: 10px;
}

body.bwtv-v2 .montage-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

body.bwtv-v2 .montage-step p {
  margin: 0;
  font-size: 0.95rem;
}

body.bwtv-v2 .montage-cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12) 0%, var(--bg-card) 50%, rgba(26, 179, 235, 0.08) 100%);
  border-block: 1px solid var(--border);
}

body.bwtv-v2 .montage-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

body.bwtv-v2 .montage-cta-band h2 {
  margin-bottom: 0.5rem;
}

body.bwtv-v2 .montage-cta-band p {
  margin: 0;
  max-width: 48ch;
}

body.bwtv-v2 .montage-contact {
  padding: 4.5rem 0 5rem;
}

body.bwtv-v2 .container--form {
  width: min(100% - 2rem, 920px);
}

body.bwtv-v2 .montage-contact-form {
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  body.bwtv-v2 .montage-contact-form {
    padding: 3rem 2.75rem;
  }
}

body.bwtv-v2 .montage-contact-form .form-section {
  border: 0;
  margin: 0 0 2.25rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--border);
}

body.bwtv-v2 .montage-contact-form .form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

body.bwtv-v2 .montage-contact-form legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0;
  width: 100%;
}

body.bwtv-v2 .montage-contact-form legend .fa {
  color: var(--accent);
  font-size: 1.1rem;
}

body.bwtv-v2 .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

@media (min-width: 640px) {
  body.bwtv-v2 .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

body.bwtv-v2 .form-group--full textarea {
  min-height: 220px;
  font-size: 1rem;
  line-height: 1.6;
}

body.bwtv-v2 .montage-contact-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5a623' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

body.bwtv-v2 .form-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  body.bwtv-v2 .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

body.bwtv-v2 .form-footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 42ch;
  flex: 1;
}

body.bwtv-v2 .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  white-space: nowrap;
}

body.bwtv-v2 .montage-contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

body.bwtv-v2 .contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

body.bwtv-v2 .contact-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

body.bwtv-v2 .contact-card > .fa {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 0.15rem;
}

body.bwtv-v2 .contact-card strong {
  display: block;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

body.bwtv-v2 .contact-card a,
body.bwtv-v2 .contact-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

body.bwtv-v2 .contact-card a:hover {
  color: var(--accent);
}

body.bwtv-v2 .montage-contact__note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* Instagram footer widget in layout */
body.bwtv-v2 .footer-instagram-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}
