/* ===========================================
   POULP'FICTION — Styles principaux
   =========================================== */

/* --- Variables --- */
:root {
    --blue:        #0077cc;
    --blue-light:  #1a9fe0;
    --blue-bright: #00b4ff;
    --blue-dark:   #005599;
    --dark:        #1a1a1a;
    --dark-medium: #2a2a2a;
    --dark-navy:   #0a1428;
    --gray-light:  #f5f7fa;
    --gray:        #888;
    --text:        #333;
    --white:       #fff;
    --font-h:      'Raleway', sans-serif;
    --font-b:      'Open Sans', sans-serif;
    --ease:        0.3s ease;
    --shadow:      0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.2);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--ease);
}
.btn-primary  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-dark     { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-medium); border-color: var(--dark-medium); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    padding: 9px 0;
}
.top-nav {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}
.top-nav a {
    color: #bbb;
    font-size: 0.72rem;
    font-family: var(--font-h);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--ease);
}
.top-nav a:hover { color: var(--blue-bright); }

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow var(--ease);
}
.main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.main-header .container {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 64px;
    width: auto;
    display: block;
    /* mix-blend-mode makes the black background of the logo transparent on white */
    mix-blend-mode: multiply;
}

/* Main nav */
.main-nav { margin-left: auto; }
.main-nav > ul {
    display: flex;
    align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 13px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text);
    white-space: nowrap;
    transition: color var(--ease);
    border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a i { font-size: 0.6rem; transition: transform var(--ease); }
.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
    color: var(--blue);
    border-bottom-color: var(--blue);
}
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 230px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    z-index: 300;
    border-top: 3px solid var(--blue);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 11px 20px;
    font-size: 0.83rem;
    color: var(--text);
    border-left: 3px solid transparent;
    transition: var(--ease);
}
.dropdown li a:hover {
    background: var(--gray-light);
    border-left-color: var(--blue);
    color: var(--blue);
    padding-left: 26px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            #a8d8f8 0%,
            #5cb8e8 10%,
            #1f8fcc 18%,
            #006aaa 30%,
            #004d88 50%,
            #003366 70%,
            #001e3d 100%
        );
}

/* Light ray effect */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90px 500px at 25% -10%, rgba(255,255,255,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 60px 420px at 52% -5%,  rgba(255,255,255,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 70px 450px at 78% -8%,  rgba(255,255,255,0.09) 0%, transparent 65%);
    pointer-events: none;
}

/* Water surface shimmer */
.hero::after {
    content: '';
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.4) 70%, transparent);
    box-shadow: 0 0 18px 4px rgba(255,255,255,0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 24px;
    max-width: 680px;
}
.hero-content h1 {
    font-family: var(--font-h);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.9;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Diver silhouette */
.hero-diver {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255,255,255,0.07);
    z-index: 1;
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.25);
    animation: bubble-rise linear infinite;
}
.bubble:nth-child(1) { width: 14px; height: 14px; left: 12%;  bottom: -20px; animation-duration: 9s;   animation-delay: 0s; }
.bubble:nth-child(2) { width:  8px; height:  8px; left: 25%;  bottom: -20px; animation-duration: 7s;   animation-delay: 2s; }
.bubble:nth-child(3) { width: 18px; height: 18px; left: 40%;  bottom: -20px; animation-duration: 11s;  animation-delay: 0.5s; }
.bubble:nth-child(4) { width:  6px; height:  6px; left: 55%;  bottom: -20px; animation-duration: 8s;   animation-delay: 3s; }
.bubble:nth-child(5) { width: 12px; height: 12px; left: 68%;  bottom: -20px; animation-duration: 10s;  animation-delay: 1s; }
.bubble:nth-child(6) { width: 10px; height: 10px; left: 80%;  bottom: -20px; animation-duration: 7.5s; animation-delay: 4s; }
.bubble:nth-child(7) { width:  7px; height:  7px; left: 90%;  bottom: -20px; animation-duration: 8.5s; animation-delay: 1.5s; }
.bubble:nth-child(8) { width: 15px; height: 15px; left: 6%;   bottom: -20px; animation-duration: 12s;  animation-delay: 2.5s; }

@keyframes bubble-rise {
    0%   { transform: translateY(0)    translateX(0);    opacity: 0;   }
    5%   { opacity: 0.8; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-620px) translateX(15px); opacity: 0; }
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.features { background: var(--dark); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 22px;
    color: var(--white);
    background: #222;
    border-top: 3px solid transparent;
    border-right: 1px solid rgba(255,255,255,0.04);
    transition: var(--ease);
    cursor: pointer;
}
.feature-box:hover,
.feature-box.active {
    background: #1a1a1a;
    border-top-color: var(--blue);
}
.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--blue-bright);
    flex-shrink: 0;
    transition: var(--ease);
}
.feature-box:hover .feature-icon,
.feature-box.active .feature-icon { background: var(--blue); color: var(--white); }
.feature-box span {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 90px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.about-card { text-align: center; }

.about-image {
    position: relative;
    margin-bottom: 36px;
}
.img-placeholder {
    width: 100%;
    height: 230px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.35);
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}
.img-placeholder span {
    font-size: 0.8rem;
    font-family: var(--font-h);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.img-pool { background: linear-gradient(135deg, #1a6fa8 0%, #0a3d62 100%); }
.img-club { background: linear-gradient(135deg, #0d5c8a 0%, #051e3e 100%); }

/* Wave clip at bottom of image */
.img-wave {
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 32px;
    background: var(--white);
    clip-path: ellipse(52% 100% at 48% 100%);
}
.img-wave.right { clip-path: ellipse(52% 100% at 55% 100%); }

.about-card h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
}
.about-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 28px;
}
.diver-sep {
    font-size: 1.7rem;
    color: var(--blue);
    margin-bottom: 28px;
    opacity: 0.6;
}

/* ============================================
   BREVETS SECTION
   ============================================ */
.brevets-section {
    background-color: var(--dark-navy);
    background-image:
        radial-gradient(ellipse 800px 600px at 80% 60%, rgba(0,100,180,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(0,80,140,0.1)  0%, transparent 70%);
    padding: 90px 0;
    color: var(--white);
}

.section-title {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-align: center;
    color: var(--blue-bright);
}
.section-title.dark { color: var(--blue-light); }
.section-sep {
    width: 50px;
    height: 3px;
    background: var(--blue);
    margin: 14px auto 0;
}
.section-sep.blue { background: var(--blue); }
.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin: 20px auto 60px;
    max-width: 580px;
    line-height: 1.75;
}

.brevets-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.4fr 1.4fr;
    grid-template-rows: auto auto;
    gap: 48px 56px;
    align-items: start;
}
.brevet-wide { grid-row: 1 / 3; }
.brevet-col h3 {
    font-family: var(--font-h);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.brevet-line {
    width: 38px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 18px;
}
.brevet-col p {
    color: rgba(255,255,255,0.58);
    font-size: 0.86rem;
    line-height: 1.8;
}

.level-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}
.level-item { display: flex; align-items: flex-start; gap: 16px; }
.level-avatar {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
}
.level-item p {
    color: rgba(255,255,255,0.55);
    font-size: 0.83rem;
    line-height: 1.65;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 90px 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 60px;
}
.team-column h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--dark);
    margin-bottom: 12px;
}
.team-col-sep {
    width: 38px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 22px;
}
.team-intro {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 32px;
}
.team-member {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid #eee;
}
.member-photo { flex-shrink: 0; }
.photo-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6fa8, #0a3d62);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
    border: 3px solid var(--blue-light);
}
.member-info { flex: 1; }
.member-info h4 {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.member-info p {
    font-size: 0.8rem;
    color: var(--gray);
}
.member-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
    transition: var(--ease);
}
.member-nav:hover { background: var(--blue-dark); transform: translateX(2px); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 64px 0;
    overflow: hidden;
}
.newsletter-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 400px at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 70%),
        radial-gradient(circle 300px at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.newsletter-section h3 {
    color: var(--white);
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-b);
    background: var(--white);
    color: var(--text);
}
.newsletter-form button {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}
.newsletter-form button:hover { background: #000; }
.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877f2;
    color: var(--white);
    padding: 13px 28px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--ease);
}
.btn-facebook:hover { background: #1560d4; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: #888;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.8rem;
    color: #777;
    transition: var(--ease);
}
.footer-col ul li a:hover { color: var(--blue-bright); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 0; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.contact-item i {
    color: var(--blue-bright);
    margin-top: 3px;
    width: 14px;
    text-align: center;
    font-size: 0.85rem;
}
.contact-item span { font-size: 0.8rem; line-height: 1.6; }

.footer-logo-mark {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
    /* On the dark footer the black background blends naturally */
    opacity: 0.92;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.76rem;
    color: #444;
}
.footer-bottom strong { color: var(--blue-light); }

.scroll-top {
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--ease);
}
.scroll-top:hover { background: var(--blue-dark); }

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

/* Lien actif dans la top bar */
.top-nav a.active-toplink { color: var(--blue-bright); }

/* Banner de page (version réduite du hero) */
.page-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom,
        #a8d8f8 0%,
        #5cb8e8 10%,
        #1f8fcc 18%,
        #006aaa 30%,
        #004d88 55%,
        #003366 80%,
        #001e3d 100%
    );
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80px 400px at 30% -10%, rgba(255,255,255,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 60px 350px at 70% -8%,  rgba(255,255,255,0.09) 0%, transparent 65%);
    pointer-events: none;
}
.page-banner::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.4) 70%, transparent);
    box-shadow: 0 0 18px 4px rgba(255,255,255,0.2);
}
.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 24px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    opacity: 0.75;
    margin-bottom: 16px;
    font-family: var(--font-h);
    letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--white); transition: var(--ease); }
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb i { font-size: 0.6rem; }
.page-banner-content h1 {
    font-family: var(--font-h);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}
.page-banner-content p {
    font-size: 1rem;
    opacity: 0.85;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

/* Intro section */
.partners-intro {
    padding: 80px 0;
    background: var(--white);
}
.intro-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}
.intro-text h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.intro-text p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 16px;
}
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 180px;
}
.stat-box {
    background: var(--gray-light);
    border-left: 4px solid var(--blue);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Partners sections */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}
.partners-section.alt { background: var(--gray-light); }
.partners-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin: 12px 0 50px;
}

/* Partners grid */
.partners-grid {
    display: grid;
    gap: 28px;
}
.partners-grid.gold     { grid-template-columns: repeat(2, 1fr); }
.partners-grid.standard { grid-template-columns: repeat(4, 1fr); }

/* Partner card */
.partner-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    transition: var(--ease);
    position: relative;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}
.gold-card { border-top: 4px solid #e8a800; }
.gold-card:hover { border-color: #e8a800; border-top-color: #e8a800; }

.partner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
}
.gold-badge {
    background: #e8a800;
    color: var(--white);
}

.partner-logo-area {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.4);
}
.partners-grid.gold .partner-logo-area { height: 200px; }
.gold-bg  { background: linear-gradient(135deg, #c88a00, #9a6800); }
.blue-bg  { background: linear-gradient(135deg, #1a6fa8, #0a3d62); }
.partner-logo-area span {
    font-size: 0.72rem;
    font-family: var(--font-h);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.partner-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.partner-body h3 {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.partner-type {
    font-size: 0.75rem;
    color: var(--blue);
    font-family: var(--font-h);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.partner-body p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.7;
    flex: 1;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 0.78rem;
    font-family: var(--font-h);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: var(--ease);
}
.partner-link:hover { color: var(--blue-dark); gap: 8px; }
.partner-link i { font-size: 0.7rem; }

/* Devenir partenaire */
.become-partner {
    background-color: var(--dark-navy);
    background-image:
        radial-gradient(ellipse 700px 500px at 90% 50%, rgba(0,100,180,0.15) 0%, transparent 70%);
    padding: 80px 0;
    color: var(--white);
}
.become-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.become-text h2 {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.become-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 28px;
}
.become-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.become-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}
.become-benefits li i { color: var(--blue-bright); flex-shrink: 0; }
.become-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}
.become-icon {
    width: 88px;
    height: 88px;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--blue-bright);
}
.become-cta p {
    font-family: var(--font-h);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Responsive partenaires */
@media (max-width: 1100px) {
    .partners-grid.standard { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .partners-grid.gold  { grid-template-columns: 1fr; }
    .intro-inner { grid-template-columns: 1fr; }
    .intro-stats { flex-direction: row; flex-wrap: wrap; }
    .become-inner { grid-template-columns: 1fr; }
    .become-cta { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
    .page-banner-content h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .partners-grid.standard { grid-template-columns: 1fr; }
    .stat-box { flex: 1 1 calc(50% - 8px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hero-content h1 { font-size: 2.6rem; }
    .brevets-grid { grid-template-columns: 1fr 1fr; }
    .brevet-wide { grid-row: auto; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    /* Mobile nav */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 16px 0 24px;
        z-index: 300;
    }
    .main-nav.open { display: block; }
    .main-nav > ul { flex-direction: column; }
    .main-nav > ul > li > a {
        padding: 13px 24px;
        border-bottom: 1px solid #f0f0f0;
        justify-content: space-between;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--blue);
        margin-left: 24px;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .nav-toggle { display: flex; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid    { grid-template-columns: 1fr; gap: 50px; }
    .team-grid     { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid   { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 2rem; }
    .hero-diver { display: none; }
}

@media (max-width: 600px) {
    .hero { min-height: 440px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-content p  { font-size: 0.95rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .brevets-grid  { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input  { border-bottom: 1px solid #ddd; }
    .section-title { font-size: 1.5rem; letter-spacing: 2px; }
    .top-nav { gap: 16px; }
    .about { padding: 60px 0; }
    .brevets-section { padding: 60px 0; }
    .team-section { padding: 60px 0; }
}
