/* =====================================================
   MOURoux BADMINTON CLUB - STYLE PRINCIPAL
   ===================================================== */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.6;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}



/* =====================================================
   STRUCTURE GENERALE
   ===================================================== */


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}


.small-container {
    max-width: 900px;
}


.section {
    padding: 100px 0;
}


h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.15;
}


h2 {
    font-size: clamp(2rem,4vw,3rem);
    margin-bottom: 50px;
}


p {
    font-size: 1.05rem;
}





/* =====================================================
   BOUTONS
   ===================================================== */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.hide-contact-btn {
    visibility: hidden;
}

.btn-primary {

    background: #1B8F9B;
    color:white;

}


.btn-primary:hover {

    background:#55BDCD;
    transform: translateY(-2px);

}



.btn-light {

    background:rgba(255,255,255,.15);
    color:white;
    border:1px solid rgba(255,255,255,.3);

}


.btn-light:hover {

    background:white;
    color:#111827;

}



.btn-white {

    background:white;
    color:#111827;

}


.btn-white:hover {

    transform:translateY(-3px);

}





/* =====================================================
   HEADER
   ===================================================== */


.header {

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);

    border-bottom:1px solid #e2e8f0;

}



.nav-container {

    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}



.logo {

    display:flex;
    flex-direction:column;
    text-decoration: none;
    color: inherit;

}

.logo-bottom {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}


.logo span {

    font-size:2rem;
    font-weight:900;
    color:#4c1d95;

}


.logo small {

    font-size:.75rem;
    color:#64748b;

}

.logo img {

    width: 60%;

}




.nav {

    display:flex;
    gap:35px;
    color:#475569;
    font-weight:600;

}


.nav a:hover {

    color:#1B8F9B;

}


.menu-toggle {

    display:none;
    border:0;
    background:none;
    font-size:2rem;

}





/* =====================================================
   HERO
   ===================================================== */


.hero {

    height:100vh;
    min-height:700px;

    position:relative;

    background-image:url("images/hero.jpg");
    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

}



.hero-overlay {

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(10,10,10,.95),
    rgba(10,10,10,.55),
    rgba(85,190,205,.25)
    );

}



.hero-content {

    position:relative;
    color:white;

}



.eyebrow {

    text-transform:uppercase;
    letter-spacing:4px;
    color:#92CFD6;
    font-weight:700;
    margin-bottom:25px;

}



.hero h1 {

    font-size:clamp(3rem,7vw,5.5rem);
    margin-bottom:30px;

}



.hero-text {

    max-width:650px;
    color:#e2e8f0;
    font-size:1.25rem;

}



.hero-buttons {

    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;

}





/* =====================================================
   LABELS
   ===================================================== */


.section-label {

    color:#1B8F9B;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
    margin-bottom:20px;

}


.section-label.light {

    color:#92CFD6;

}





/* =====================================================
   CARTES CLUB
   ===================================================== */


.cards {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.card {

    background:white;
    padding:40px;
    border-radius:30px;

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);

    transition:.3s;
    
    position: relative;
    overflow: hidden;

}

.card::before{

    content:"";

    position:absolute;
    inset:0;

    background-position:top right;
    background-size:100%;
    background-repeat:no-repeat;

    opacity:.80;

    z-index:0;

}

.card-loisir::before{
    background-image:url("images/loisir.jpg");
}

.card-competition::before{
    background-image:url("images/competition.jpg");
}

.card-jeunes::before{
    background-image:url("images/jeunes.jpg");
}


.card > *{
    position:relative;
    z-index:1;
}

.card:hover {

    transform:translateY(-8px);

}



.icon {

    font-size:3rem;
    margin-bottom:25px;

}



.card h3 {

    font-size:1.6rem;
    margin-bottom:15px;

}



.card p {

    color:#64748b;

}





/* =====================================================
   HORAIRES
   ===================================================== */


.dark {

    background:#0f172a;
    color:white;

}



.schedule {

    display:grid;
    gap:20px;

}



.schedule div {

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(255,255,255,.08);

    padding:25px 35px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.1);

}



.schedule strong {

    color:#92CFD6;

}

.schedule strong .kids   {

    color:#efb54d;

}

.info-kids   {

    color:#efb54d;
    font-size: small;
    text-align: center;

}


.schedule strong .adultes {

    color:#5fc9df;

}



/* =====================================================
   JEUNES
   ===================================================== */


.two-columns {

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}



.photo-box img {

    height:500px;
    width:100%;
    object-fit:cover;

    border-radius:35px;

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}



.two-columns p {

    color:#1B8F9B;

}



.check-list {

    margin-top:30px;
    list-style:none;

}



.check-list li {

    margin-bottom:15px;
    font-weight:600;

}



.check-list li::before {

    content:"✓";
    color:#1B8F9B;
    font-weight:bold;
    margin-right:15px;

}





/* =====================================================
   CTA
   ===================================================== */


.cta {

    padding:100px 0;
    text-align:center;
    color:white;

    background:
    linear-gradient(
    135deg,
    #1B8F9B,
    #111827
    );

}



.cta h2 {

    margin-bottom:25px;

}



.cta p {

    max-width:700px;
    margin:0 auto 40px;

    color:#ede9fe;

}




/* =====================================================
   FOOTER
   ===================================================== */


footer {

    background:#020617;
    color:#94a3b8;

}



.footer-content {

    padding:60px 30px;

    display:flex;
    justify-content:space-between;
    gap:40px;

}



footer h3 {

    color:white;
    font-size:1.7rem;
    margin-bottom:15px;

}



.copyright {

    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.1);

}





/* =====================================================
   RESPONSIVE MOBILE
   ===================================================== */


@media(max-width:900px){


.nav {

    display:none;
    position:absolute;

    top:90px;
    left:0;
    right:0;

    background:white;

    flex-direction:column;
    padding:30px;

}



.nav.active {

    display:flex;

}



.menu-toggle {

    display:block;

}



.nav-container .btn {

    display:none;

}



.cards {

    grid-template-columns:1fr;

}



.two-columns {

    grid-template-columns:1fr;

}



.hero {

    min-height:650px;

}



.hero h1 {

    font-size:3rem;

}



.footer-content {

    flex-direction:column;

}



.schedule div {

    flex-direction:column;
    gap:10px;

}



}


/* ======================================
   PAGE CONTACT
====================================== */


.page-hero {

    padding:170px 0 100px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #4c1d95
    );

    color:white;

    text-align:center;

}



.page-hero h1 {

    font-size:clamp(2.5rem,5vw,4rem);

    margin-bottom:25px;

}



.page-hero p {

    max-width:700px;

    margin:auto;

    color:#ddd6fe;

}




.contact-layout {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}



.contact-info {

    font-size:1.1rem;

}



.contact-form {

    background:white;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.1);

}



.contact-form form {

    display:flex;

    flex-direction:column;

    gap:12px;

}



.contact-form label {

    font-weight:700;

    margin-top:10px;

}



.contact-form input,
.contact-form textarea,
.contact-form select {


    padding:15px;

    border-radius:12px;

    border:1px solid #cbd5e1;

    font-size:1rem;

    font-family:inherit;


}



.contact-form textarea {

    resize:vertical;

}



.honeypot {

    display:none;

}



@media(max-width:900px){


.contact-layout {

    grid-template-columns:1fr;

}


}

/* =======================================
   PARTENAIRES
=======================================*/

.partners{

    padding:100px 0;

    background:#f8fafc;

}


.carousel-wrapper{

    display:flex;

    align-items:center;

    gap:20px;

}


.carousel{

    overflow:hidden;

    flex:1;

}


.carousel-track{

    display:flex;

    transition:transform .5s ease;

}


.partner{

    flex:0 0 25%;

    padding:20px;

    display:flex;

    justify-content:center;

    align-items:center;

}


.partner img{

    height:120px;

    width:auto;

    max-width:100%;

    object-fit:contain;

    transition:.3s;

}


.partner img:hover{

    transform:scale(1.05);

}


.carousel-btn{

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#1B8F9B;

    color:white;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}


.carousel-btn:hover{

    background:#55BDCD;

}



@media(max-width:1000px){

.partner{

    flex:0 0 33.333%;

}

}



@media(max-width:700px){

.partner{

    flex:0 0 50%;

}

}

.conseil-administration {
    text-align: center;
    padding: 40px 20px;
}

.conseil-administration h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.ca-container {
    display: grid;
    grid-template-columns: repeat(6, 120px);
    justify-content: center;
    gap: 35px 30px;
}

.ca-membre {
    text-align: center;
}

.ca-statut {
    font-weight: normal !important;
    color: grey  !important;;
}

.ca-membre img {
    width: 120px;
    height: 133px;
    object-fit: cover;
    border-radius: 5px;
}

.ca-membre p {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 20px !important;
}

@media (max-width: 900px) {
    .ca-container {
        grid-template-columns: repeat(3, 120px);
    }
}

@media (max-width: 450px) {
    .ca-container {
        grid-template-columns: repeat(2, 120px);
    }
}

/* ==========================================
        SECTION LOCALISATION
========================================== */

.location-section{


    padding:90px 0;

    color:#fff;

}

.location-content{

    width:min(1200px,90%);

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:center;

}

.location-text .subtitle{

    color:#92CFD6;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;

}

.location-text h2{

    font-size:42px;

    margin:20px 0;

    color:#fff;

}

.location-text p{

    color:#d5d5d5;

    line-height:1.8;

    margin-bottom:18px;

    font-size:17px;

}

.location-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 32px;

    background:#1B8F9B;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.location-btn:hover{

    background:#ff5252;

    transform:translateY(-2px);

}

.location-map{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.location-map iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}

/* Responsive */

@media(max-width:900px){

    .location-content{

        grid-template-columns:1fr;

    }

    .location-text{

        text-align:center;

    }

    .location-map iframe{

        height:400px;

    }

}


/*==========================================
            SECTION VIDEO
==========================================*/

.video-section{

    background:#0f0f0f;

    padding:100px 0;

}

.video-content{

    width:min(1200px,90%);

    margin:auto;

    display:grid;

    grid-template-columns:430px 1fr;

    gap:60px;

    align-items:center;

}

.video-text{

    color:#fff;

}

.video-subtitle{

    color:#e53935;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    font-size:14px;

}

.video-text h2{

    margin:20px 0;

    font-size:42px;

    color:#fff;

}

.video-text p{

    color:#d5d5d5;

    line-height:1.8;

    margin-bottom:18px;

    font-size:17px;

}

.video-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 34px;

    border-radius:40px;

    background:#0f1f6a;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.video-btn:hover{

    background:#ff5252;

    transform:translateY(-2px);

}

.video-wrapper{

    position:relative;

    width:100%;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.45);

}

.video-wrapper::before{

    content:"";

    display:block;

    padding-top:56.25%;

}

.video-wrapper iframe{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    border:0;

}

/*==========================
      Responsive
==========================*/

@media(max-width:900px){

    .video-content{

        grid-template-columns:1fr;

    }

    .video-text{

        text-align:center;

    }

    .video-text h2{

        font-size:34px;

    }

}

/* =========================================================
   MBC — PAGE INSCRIPTIONS
   Compatible avec le design du nouveau site
   ========================================================= */


/* ---------------------------------------------------------
   Variables
   --------------------------------------------------------- */

.mbc-inscriptions {
  --mbc-dark: #101827;
  --mbc-dark-2: #172235;
  --mbc-primary: #1d5cff;
  --mbc-primary-dark: #1247d6;
  --mbc-light: #f5f7fb;
  --mbc-white: #ffffff;
  --mbc-text: #172033;
  --mbc-muted: #687386;
  --mbc-border: #e5e9f0;
  --mbc-radius: 24px;
  --mbc-radius-small: 14px;

  color: var(--mbc-text);
  background: var(--mbc-white);
  font-family: inherit;
  overflow: hidden;
}


/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */

.mbc-inscriptions *,
.mbc-inscriptions *::before,
.mbc-inscriptions *::after {
  box-sizing: border-box;
}

.mbc-inscriptions h1,
.mbc-inscriptions h2,
.mbc-inscriptions h3,
.mbc-inscriptions p {
  margin-top: 0;
}

.mbc-inscriptions a {
  text-decoration: none;
}

.inscription-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--mbc-primary);
}


/* ---------------------------------------------------------
   Boutons
   --------------------------------------------------------- */

.mbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 750;

  transition:
    transform .2s ease,
    background-color .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

.mbc-btn:hover {
  transform: translateY(-2px);
}

.mbc-btn-primary {
  color: #fff;
  background: var(--mbc-primary);
  box-shadow: 0 12px 30px rgba(29, 92, 255, .22);
}

.mbc-btn-primary:hover {
  background: var(--mbc-primary-dark);
}

.mbc-btn-secondary {
  color: var(--mbc-text);
  background: #fff;
  border: 1px solid var(--mbc-border);
}

.mbc-btn-light {
  color: var(--mbc-dark);
  background: #fff;
}

.mbc-btn-light:hover {
  background: var(--mbc-light);
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.inscription-hero {
  position: relative;

  padding: 130px 0 120px;

  color: #fff;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(29, 92, 255, .32),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #101827 0%,
      #162239 100%
    );
}

.inscription-hero::after {
  content: "🏸";

  position: absolute;
  right: 7%;
  bottom: -30px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  font-size: 76px;

  background: rgba(255, 255, 255, .06);
  transform: rotate(-18deg);
}

.inscription-hero .eyebrow {
  color: #8eafff;
}

.inscription-hero h1 {
  max-width: 780px;

  margin-bottom: 28px;

  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.inscription-hero h1 span {
  color: #1B8F9B;
}

.hero-intro {
  max-width: 650px;

  margin-bottom: 34px;

  color: rgba(255,255,255,.72);

  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ---------------------------------------------------------
   Sections générales
   --------------------------------------------------------- */

.inscription-profiles,
.inscription-pricing,
.registration-documents,
.equipment-section,
.fitminton-section {
  padding: 110px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 18px;

  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -.035em;
}

.section-heading p {
  margin-bottom: 0;

  color: var(--mbc-muted);

  font-size: 17px;
  line-height: 1.7;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center p {
  margin-inline: auto;
}


/* ---------------------------------------------------------
   Profils
   --------------------------------------------------------- */

.inscription-profiles {
  background: var(--mbc-light);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.profile-card {
  position: relative;

  min-height: 470px;
  padding: 42px;

  overflow: hidden;

  border: 1px solid var(--mbc-border);
  border-radius: var(--mbc-radius);

  background: #fff;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(16, 24, 39, .08);
}

.profile-card-dark {
  color: #fff;
  background: var(--mbc-dark);
  border-color: var(--mbc-dark);
}

.profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  margin-bottom: 55px;

  border-radius: 16px;

  font-size: 26px;

  background: var(--mbc-light);
}

.profile-card-dark .profile-icon {
  background: rgba(255,255,255,.09);
}

.card-label,
.pricing-category {
  display: block;
  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--mbc-primary);
}

.profile-card-dark .card-label {
  color: #8eafff;
}

.profile-card h3 {
  max-width: 460px;

  margin-bottom: 20px;

  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.profile-card p {
  max-width: 510px;

  margin-bottom: 25px;

  color: var(--mbc-muted);
  line-height: 1.65;
}

.profile-card-dark p {
  color: rgba(255,255,255,.66);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 9px;

  margin-bottom: 28px;
}

.card-price strong {
  font-size: 28px;
}

.card-price span {
  color: var(--mbc-muted);
  font-size: 13px;
}

.profile-card-dark .card-price span {
  color: rgba(255,255,255,.55);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: inherit;

  font-size: 14px;
  font-weight: 800;
}

.card-link span {
  transition: transform .2s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}


/* ---------------------------------------------------------
   Tarifs
   --------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  overflow: hidden;

  border: 1px solid var(--mbc-border);
  border-radius: var(--mbc-radius);

  background: #fff;
}

.pricing-card-featured {
  border-color: var(--mbc-primary);
  box-shadow: 0 20px 50px rgba(29, 92, 255, .10);
}

.pricing-card-header {
  padding: 38px 38px 32px;

  background: var(--mbc-light);
}

.pricing-card-featured .pricing-card-header {
  background: var(--mbc-dark);
  color: #fff;
}

.pricing-card-header .pricing-category {
  margin-bottom: 15px;
}

.pricing-card-header h3 {
  margin-bottom: 4px;

  font-size: 48px;
  line-height: 1;
  letter-spacing: -.04em;
}

.pricing-card-header p {
  margin-bottom: 0;

  color: var(--mbc-muted);
}

.pricing-card-featured .pricing-card-header p {
  color: rgba(255,255,255,.6);
}

.pricing-card-content {
  padding: 8px 38px 35px;
}

.pricing-item {
  padding: 25px 0;

  border-bottom: 1px solid var(--mbc-border);
}

.pricing-item:last-of-type {
  border-bottom: 0;
}

.pricing-item strong {
  display: block;
  margin-bottom: 6px;

  font-size: 17px;
}

.pricing-item > span {
  display: block;
  margin-bottom: 5px;

  color: var(--mbc-text);
  font-size: 14px;
  font-weight: 650;
}

.pricing-item small {
  display: block;

  color: var(--mbc-muted);
  font-size: 13px;
  line-height: 1.6;
}

.pricing-note {
  margin-top: 22px;
  padding: 18px;

  border-radius: var(--mbc-radius-small);

  background: #f8f9fc;
}

.pricing-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.pricing-note p {
  margin-bottom: 0;

  color: var(--mbc-muted);
  font-size: 13px;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   Réductions
   --------------------------------------------------------- */

.discount-box {
  margin-top: 24px;
  padding: 36px 40px;

  border-radius: var(--mbc-radius);

  background: var(--mbc-dark);
  color: #fff;
}

.discount-intro {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 32px;
}

.discount-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 54px;

  width: 54px;
  height: 54px;

  border-radius: 15px;

  font-size: 22px;
  font-weight: 800;

  color: #fff;
  background: var(--mbc-primary);
}

.discount-intro .eyebrow {
  margin-bottom: 7px;
  color: #8eafff;
}

.discount-intro h3 {
  margin-bottom: 0;
  font-size: 23px;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.discount-item {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.discount-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.discount-item strong {
  display: block;
  margin-bottom: 8px;

  font-size: 28px;
}

.discount-item span {
  display: block;

  color: rgba(255,255,255,.65);

  font-size: 13px;
  line-height: 1.5;
}

.discount-item small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.4);
}


/* ---------------------------------------------------------
   Inscription en ligne
   --------------------------------------------------------- */

.online-registration {
  padding: 110px 0;

  background: var(--mbc-light);
}

.online-registration-box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;

  padding: 65px;

  overflow: hidden;

  border-radius: 32px;

  color: #fff;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(29,92,255,.4),
      transparent 35%
    ),
    var(--mbc-dark);
}

.online-content h2 {
  max-width: 700px;

  margin-bottom: 22px;

  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}

.online-content > p {
  max-width: 600px;

  margin-bottom: 28px;

  color: rgba(255,255,255,.68);

  font-size: 16px;
  line-height: 1.7;
}

.online-content .eyebrow {
  color: #8eafff;
}

.check-list {
  display: grid;
  gap: 13px;

  margin: 0 0 35px;
  padding: 0;

  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 650;
}

.check-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  color: #fff;
  background: var(--mbc-primary);

  font-size: 12px;
}

.online-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(300px, 100%);
  aspect-ratio: 1;

  border-radius: 50%;

  background: rgba(255,255,255,.06);

  transform: rotate(-10deg);
}

.visual-circle span {
  font-size: 110px;
  transform: rotate(10deg);
}


/* ---------------------------------------------------------
   Documents
   --------------------------------------------------------- */

.documents-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.document-card {
  display: flex;
  align-items: center;
  gap: 18px;

  min-height: 92px;
  padding: 18px 20px;

  border: 1px solid var(--mbc-border);
  border-radius: var(--mbc-radius-small);

  color: var(--mbc-text);
  background: #fff;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.document-card:hover {
  transform: translateY(-2px);
  border-color: var(--mbc-primary);
  box-shadow: 0 10px 25px rgba(16,24,39,.06);
}

.document-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  border-radius: 12px;

  color: var(--mbc-primary);
  background: #eef3ff;

  font-weight: 800;
}

.document-card > div {
  flex: 1;
}

.document-card strong {
  display: block;
  margin-bottom: 5px;

  font-size: 14px;
}

.document-card span:not(.document-icon):not(.document-arrow) {
  color: var(--mbc-muted);
  font-size: 12px;
}

.document-arrow {
  font-size: 18px;
  color: var(--mbc-muted);
}


/* ---------------------------------------------------------
   Matériel
   --------------------------------------------------------- */

.equipment-section {
  background: var(--mbc-light);
}

.equipment-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.equipment-text h2 {
  margin-bottom: 20px;

  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}

.equipment-text > p {
  max-width: 470px;

  margin-bottom: 30px;

  color: var(--mbc-muted);
  line-height: 1.7;
}

.text-link {
  color: var(--mbc-primary);

  font-size: 14px;
  font-weight: 800;
}

.equipment-list {
  display: grid;
}

.equipment-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;

  padding: 25px 0;

  border-bottom: 1px solid var(--mbc-border);
}

.equipment-item:first-child {
  padding-top: 0;
}

.equipment-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--mbc-primary);
}

.equipment-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.equipment-item p {
  max-width: 650px;

  margin-bottom: 0;

  color: var(--mbc-muted);
  font-size: 14px;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   Fit'minton
   --------------------------------------------------------- */

.fitminton-section {
  padding-top: 0;
}

.simple-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;

  padding: 40px;

  border: 1px solid var(--mbc-border);
  border-radius: var(--mbc-radius);

  background: #fff;
}

.simple-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  border-radius: 17px;

  font-size: 25px;

  background: #eef3ff;
}

.simple-card h2 {
  margin-bottom: 12px;

  font-size: 29px;
  letter-spacing: -.025em;
}

.simple-card p {
  max-width: 720px;

  margin-bottom: 0;

  color: var(--mbc-muted);

  font-size: 15px;
  line-height: 1.7;
}


/* ---------------------------------------------------------
   CTA final
   --------------------------------------------------------- */

.final-cta {
  padding: 120px 0;

  color: #fff;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(29,92,255,.35),
      transparent 32%
    ),
    var(--mbc-dark);
}

.final-cta-content {
  max-width: 760px;
}

.final-cta .eyebrow {
  color: #8eafff;
}

.final-cta h2 {
  margin-bottom: 22px;

  font-size: clamp(46px, 7vw, 78px);
  line-height: .96;
  letter-spacing: -.045em;
}

.final-cta p {
  max-width: 600px;

  margin-bottom: 32px;

  color: rgba(255,255,255,.68);

  font-size: 17px;
  line-height: 1.7;
}


/* ---------------------------------------------------------
   Responsive — tablette
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .inscription-hero {
    padding: 100px 0 90px;
  }

  .profile-grid,
  .pricing-grid,
  .online-registration-box,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: auto;
  }

  .discount-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .discount-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .online-visual {
    display: none;
  }

  .equipment-grid {
    gap: 50px;
  }
}


/* ---------------------------------------------------------
   Responsive — mobile
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .inscription-container {
    width: min(100% - 32px, 1180px);
  }

  .inscription-hero {
    padding: 78px 0 75px;
  }

  .inscription-hero::after {
    width: 110px;
    height: 110px;

    right: -15px;
    bottom: -25px;

    font-size: 45px;
  }

  .inscription-hero h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mbc-btn {
    width: 100%;
  }

  .inscription-profiles,
  .inscription-pricing,
  .registration-documents,
  .equipment-section {
    padding: 75px 0;
  }

  .online-registration {
    padding: 75px 0;
  }

  .final-cta {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .profile-card {
    padding: 30px;
  }

  .profile-icon {
    margin-bottom: 40px;
  }

  .profile-card h3 {
    font-size: 36px;
  }

  .pricing-card-header,
  .pricing-card-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .discount-box {
    padding: 28px 25px;
  }

  .discount-grid {
    grid-template-columns: 1fr;
  }

  .discount-item,
  .discount-item:nth-child(3) {
    padding: 0 0 20px;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .discount-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .online-registration-box {
    padding: 38px 28px;
    border-radius: 24px;
  }

  .online-content h2 {
    font-size: 40px;
  }

  .documents-list {
    grid-template-columns: 1fr;
  }

  .document-card {
    min-height: 82px;
  }

  .simple-card {
    flex-direction: column;
    padding: 28px;
  }

  .equipment-grid {
    gap: 45px;
  }

  .equipment-text h2 {
    font-size: 40px;
  }

  .final-cta h2 {
    font-size: 50px;
  }
}


/* ---------------------------------------------------------
   Accessibilité
   --------------------------------------------------------- */

.mbc-inscriptions a:focus-visible {
  outline: 3px solid rgba(29,92,255,.45);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  .mbc-inscriptions *,
  .mbc-inscriptions *::before,
  .mbc-inscriptions *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}