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

:root {
    --primary: #013D5A;
    --accent: #86A1BC;
    --light: #FCF3E3;
    --dark: #013D5A;
    --text: #013D5A;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Reenie Beanie', cursive;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.subheading {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.accent-text {
    font-family: var(--font-accent);
    font-size: 24px;
}

/* STICKY HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 101;
}

/* TOP BAR */
.top-bar {
    background-color: var(--primary);
    padding: 10px 0;
    transition: padding 0.3s ease;
}



.top-links-spacer {
    margin-left: 30px;
}

.top-bar-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-bar .logo {
    display: flex;
    align-items: center;
}

#siteLogo {
    height: 45px;
    vertical-align: middle;
    transition: height 0.3s ease;
}

@media (min-width: 769px) {
    .top-bar.scrolled {
        padding: 4px 0;
    }
    .top-bar.scrolled #siteLogo {
        height: 25px;
    }
}

.top-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-accent);
}

.top-links a:hover {
    color: #fff;
}

.lang-toggle {
    color: var(--light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--light);
    padding: 2px 8px;
    border-radius: 3px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lang-toggle:hover {
    background-color: #fff;
    color: var(--dark);
}

/* MAIN NAV */
.main-nav {
    background-color: var(--light);
    padding: 5px 0;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    margin-left: auto;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.nav-cta:hover {
    opacity: 0.9;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light);
}

/* MOBILE DRAWER */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background-color: var(--primary);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 299;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(252, 243, 227, 0.1);
}

.mobile-drawer-logo {
    height: 30px;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-drawer-content {
    padding: 24px 20px;
}

.mobile-drawer-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-lang-toggle {
    display: inline-block;
    color: var(--light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(252, 243, 227, 0.3);
    padding: 6px 14px;
    border-radius: 3px;
    font-family: var(--font-body);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
}

.mobile-lang-toggle:hover {
    background-color: rgba(252, 243, 227, 0.1);
}

.mobile-drawer-link {
    display: block;
    color: var(--light);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    padding: 12px 0;
    border-bottom: 1px solid rgba(252, 243, 227, 0.07);
}

.mobile-drawer-link:hover {
    color: var(--accent);
}

.mobile-drawer-cta {
    margin-top: 16px;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

.mobile-drawer-cta:hover {
    opacity: 0.9;
}

.mobile-drawer-divider {
    height: 1px;
    background: rgba(252, 243, 227, 0.15);
    margin: 24px 0;
}

.mobile-drawer-section-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .top-links {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .desktop-only,
    .lang-toggle {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    #siteLogo {
        height: 28px;
    }

    .mobile-drawer {
        display: block;
    }
}

body.drawer-open {
    overflow: hidden;
}
/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
}

.modal h2 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--font-heading);
}

.modal p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-submit {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-body);
}

.form-submit:hover {
    opacity: 0.9;
}

/* HERO */
.hero {
    padding: 100px 20px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 243, 227, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero .subheading {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Kicker line inside H1 */
h1 .subheading {
    display: block;
    margin-bottom: 0.5em;
}

/* Smaller hero description */
.hero-description--small {
    font-size: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

h1 .subheading {
    display: block;
    margin-bottom: 0.5em;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero .accent-text {
    font-family: var(--font-accent);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 16px;
    color: var(--primary);
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-cta {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.hero-cta:hover {
    opacity: 0.9;
}

.hero-secondary {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}

.hero-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* SERVICES */
.services {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary);
}

.services .subheading {
    color: var(--accent);
    margin-bottom: 10px;
}

.services h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--light);
    margin-bottom: 50px;
}

.services-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--light);
    padding: 36px 28px;
    text-align: left;
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-top: 3px solid var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.service-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-description {
    font-size: 14px;
    color: var(--primary);
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 20px;
}

.service-outcomes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.outcome {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.outcome span {
    color: var(--accent);
    font-size: 14px;
}

.service-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-body);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

.service-link:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* TRUST BAR */
.trust-bar {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--light);
}

.trust-bar .subheading {
    color: var(--primary);
    margin-bottom: 30px;
}

.trust-logos {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.trust-logos img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.trust-logos #logo-apciq {
    width: 125px;
}

@media (max-width: 768px) {
    .trust-logos {
        flex-direction: column;
        gap: 30px;
    }
}

/* TRANSFORMATION */
.transformation {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary);
}

.transformation .subheading {
    color: var(--accent);
    margin-bottom: 10px;
}

.transformation h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--light);
    margin-bottom: 50px;
}

.transformation-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 40px;
    align-items: start;
}

.transform-col.before {
    text-align: right;
}

.transform-col.after {
    text-align: left;
}

.transform-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(252, 243, 227, 0.3);
    margin-bottom: 24px;
}

.transform-label.after-label {
    color: var(--accent);
}

.transform-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    min-height: 250px;
}

.transform-item {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.before-item {
    color: rgba(252, 243, 227, 0.4);
    justify-content: flex-end;
}

.before-item span {
    order: 2;
    color: rgba(252, 243, 227, 0.25);
}

.after-item {
    color: var(--light);
}

.after-item span {
    color: var(--accent);
}

.transformation-cta {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transform-col.before {
        text-align: left;
    }

    .before-item {
        justify-content: flex-start;
    }

    .before-item span {
        order: 0;
    }

    .transform-divider {
        width: 60px;
        height: 1px;
        min-height: auto;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, var(--accent), transparent);
    }
}

/* TÉMOIGNAGES */
.testimonials {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--light);
}

.testimonials .subheading {
    color: var(--accent);
    margin-bottom: 10px;
}

.testimonials h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 50px;
}

.testimonials-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 36px 28px;
    text-align: left;
    border-top: 3px solid var(--accent);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(1, 61, 90, 0.1);
}

.stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--primary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(1, 61, 90, 0.5);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* À PROPOS */
.about {
    padding: 80px 20px;
    background-color: var(--primary);
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about .subheading {
    color: var(--accent);
    margin-bottom: 10px;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--light);
    margin-bottom: 4px;
}

.about-role {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(252, 243, 227, 0.7);
    margin-bottom: 16px;
}

.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 24px;
}

.badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(134, 161, 188, 0.4);
    color: var(--accent);
}

.about-certification {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.about .service-link {
    color: var(--light);
    border-bottom: 2px solid var(--accent);
}

.about .service-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* APPEL GRATUIT */
.cta-section {
    padding: 80px 20px;
    background-color: var(--light);
}

.cta-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content .subheading {
    color: var(--accent);
    margin-bottom: 10px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(1, 61, 90, 0.7);
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-benefit span {
    font-size: 20px;
}

.cta-benefit p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
}

/* CTA FORM */
.cta-form {
    background: #fff;
    padding: 40px;
    border-top: 3px solid var(--accent);
}

.cta-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.cta-form .form-group {
    margin-bottom: 16px;
}

.cta-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.cta-form .form-group input,
.cta-form .form-group select,
.cta-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
    background: #fff;
}

.cta-form .form-group input:focus,
.cta-form .form-group select:focus,
.cta-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.cta-submit {
    width: 100%;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.cta-submit:hover {
    opacity: 0.9;
}

.cta-privacy {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(1, 61, 90, 0.4);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* FOOTER */
.site-footer {
    background-color: var(--light);
}

.footer-newsletter {
    padding: 0;
    background-color: var(--light);
}

.footer-newsletter-content {
    max-width: 100%;
    margin: 0 auto;
}

.newsletter-box {
    background-color: var(--primary);
    padding: 80px 20px;
    text-align: center;
}

.newsletter-box h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--light);
    margin-bottom: 8px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-box .accent-text {
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-box-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(252, 243, 227, 0.6);
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--accent);
    border-right: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
    background: #fff;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--light);
}

.newsletter-form button {
    background-color: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 0;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--light);
    border-color: var(--light);
}

.newsletter-note {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(252, 243, 227, 0.35);
    margin-top: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-bar {
    padding: 50px 20px;
    background-color: var(--light);
}

.footer-social-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-social-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-4px);
}

.social-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(1, 61, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icon-link:hover .social-icon-circle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.social-icon-name {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(1, 61, 90, 0.4);
    letter-spacing: 1px;
}

.social-icon-link:hover .social-icon-name {
    color: var(--primary);
}

.footer-bottom-bar {
    padding: 30px 20px;
    background-color: var(--light);
}

.footer-bottom-content {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 20px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(1, 61, 90, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-legal p {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(1, 61, 90, 0.25);
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(1, 61, 90, 0.25);
    margin-top: 6px;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .newsletter-box {
        padding: 40px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 2px solid var(--accent);
        border-bottom: none;
    }

    .social-icons-row {
        gap: 20px;
    }

    .social-icon-circle {
        width: 48px;
        height: 48px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* INNER PAGE NAV — left-aligned links */
.nav-container--inner {
    justify-content: flex-start;
}

.nav-links--left {
    position: static;
    transform: none;
}


/* MOBILE NAV — legacy, kept for compat */
/* PAGE HERO */
.page-hero { padding: 100px 20px 80px; text-align: center; background-color: var(--light); }
.page-hero .subheading { color: var(--accent); margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-heading); font-size: 56px; color: var(--primary); margin-bottom: 8px; line-height: 1.15; }
.page-hero .accent-text { color: var(--primary); font-size: 26px; }
 
/* STORY INTRO */
.story-intro { padding: 0 20px 80px; background-color: var(--light); }
.story-intro-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.story-intro p { font-family: var(--font-heading); font-size: 22px; font-style: italic; line-height: 1.8; color: var(--primary); opacity: 0.7; }
 
/* TEAM BLOCKS */
.team-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.team-block.reversed .team-block-image { order: 2; }
.team-block.reversed .team-block-content { order: 1; }
.team-block-image { position: relative; overflow: hidden; }
.team-block-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-block-content { display: flex; align-items: center; padding: 60px 80px; }
.team-block-content.dark-bg { background-color: var(--primary); }
.team-block-content.light-bg { background-color: var(--light); }
.team-block-inner { max-width: 520px; }
 
.dark-bg .subheading { color: var(--accent); margin-bottom: 10px; }
.dark-bg h2 { font-family: var(--font-heading); font-size: 42px; color: var(--light); margin-bottom: 4px; }
.dark-bg .team-role { color: var(--accent); }
.dark-bg .team-text { color: rgba(252, 243, 227, 0.65); }
.dark-bg .badge { border-color: rgba(134, 161, 188, 0.4); color: var(--accent); }
 
.light-bg .subheading { color: var(--accent); margin-bottom: 10px; }
.light-bg h2 { font-family: var(--font-heading); font-size: 42px; color: var(--primary); margin-bottom: 4px; }
.light-bg .team-role { color: var(--accent); }
.light-bg .team-text { color: rgba(1, 61, 90, 0.65); }
.light-bg .badge { border-color: rgba(134, 161, 188, 0.4); color: var(--accent); }
 
.team-role { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.team-text { font-family: var(--font-body); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.team-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.team-badges .badge { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; }
.team-certification { height: 55px; width: auto; margin-top: 20px; display: block; }
 
/* VMV */
.vmv-section { background-color: var(--primary); padding: 80px 20px; }
.vmv-container { max-width: 1140px; margin: 0 auto; }
.vmv-row { display: grid; grid-template-columns: 0.4fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.vmv-row:last-child { margin-bottom: 0; }
.vmv-label { position: sticky; top: 120px; }
.vmv-label .subheading { color: var(--accent); margin-bottom: 8px; }
.vmv-label h2 { font-family: var(--font-heading); font-size: 36px; color: var(--light); line-height: 1.2; }
.vmv-text p { font-family: var(--font-body); font-size: 16px; line-height: 1.9; color: rgba(252, 243, 227, 0.7); max-width: 600px; }
.valeurs-list { display: flex; flex-direction: column; }
.valeur-item { display: grid; grid-template-columns: 60px 160px 1fr; gap: 0 20px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid rgba(252, 243, 227, 0.08); }
.valeur-item:first-child { border-top: 1px solid rgba(252, 243, 227, 0.08); }
.valeur-num { font-family: var(--font-heading); font-size: 28px; color: rgba(252, 243, 227, 0.15); font-weight: 300; }
.valeur-name { font-family: var(--font-heading); font-size: 22px; color: var(--light); }
.valeur-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: rgba(252, 243, 227, 0.5); }
 
/* ABOUT CTA + FORM */
.about-cta-form { padding: 80px 20px; text-align: center; background-color: var(--light); }
.about-cta-form .subheading { color: var(--accent); margin-bottom: 10px; }
.about-cta-form h2 { font-family: var(--font-heading); font-size: 44px; color: var(--primary); margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.2; }
.about-cta-form > p { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: rgba(1, 61, 90, 0.6); max-width: 500px; margin: 0 auto 40px; }
 
.about-form-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-top: 3px solid var(--accent);
    text-align: left;
}
.about-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-form-card .form-group { margin-bottom: 16px; }
.about-form-card .form-group label { display: block; margin-bottom: 5px; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--primary); }
.about-form-card .form-group input,
.about-form-card .form-group select,
.about-form-card .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; font-family: var(--font-body); font-size: 14px; color: var(--primary); background: #fff; border-radius: 0; }
.about-form-card .form-group input:focus,
.about-form-card .form-group select:focus { outline: none; border-color: var(--accent); }
.about-form-card .form-submit-btn { width: 100%; background-color: var(--accent); color: var(--primary); border: none; padding: 14px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 8px; }
.about-form-card .form-submit-btn:hover { opacity: 0.9; }
.about-form-card .form-privacy { font-family: var(--font-body); font-size: 11px; color: rgba(1, 61, 90, 0.4); text-align: center; margin-top: 12px; }
 
@media (max-width: 768px) {
    .page-hero h1 { font-size: 38px; }
    .team-block, .team-block.reversed { grid-template-columns: 1fr; min-height: auto; }
    .team-block.reversed .team-block-image { order: 0; }
    .team-block.reversed .team-block-content { order: 0; }
    .team-block-image { height: 350px; }
    .team-block-content { padding: 40px 24px; }
    .vmv-row { grid-template-columns: 1fr; gap: 20px; }
    .vmv-label { position: static; }
    .valeur-item { grid-template-columns: 40px 1fr; gap: 4px 16px; }
    .valeur-desc { grid-column: 1 / -1; margin-top: 6px; }
    .about-form-card { padding: 28px 20px; }
    .about-form-card .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   COACHING IMMOBILIER PAGE
   ══════════════════════════════════════════════ */

/* STAT BAND */
.stat-band { background-color: var(--primary); padding: 48px 20px; position: relative; overflow: hidden; }
.stat-band::before { content: ''; position: absolute; top: -60px; right: -40px; width: 200px; height: 200px; border: 2px solid rgba(134,161,188,0.1); border-radius: 50%; }
.stat-band::after { content: ''; position: absolute; top: -20px; right: 20px; width: 120px; height: 120px; border: 2px solid rgba(134,161,188,0.07); border-radius: 50%; }
.stat-band-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
.stat-number { font-family: var(--font-heading); font-size: 52px; font-weight: 300; color: var(--light); line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
@media (max-width: 768px) {
    .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-number { font-size: 40px; }
}

/* COACHING INTRO — photo + text side by side */
.coaching-intro { padding: 0; background-color: var(--light); }
.coaching-intro-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.coaching-intro-image { position: relative; overflow: hidden; }
.coaching-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coaching-intro-content { display: flex; align-items: center; padding: 60px 80px; position: relative; }
.coaching-intro-content::before { content: ''; position: absolute; top: 40px; right: 40px; width: 140px; height: 140px; border: 2px solid rgba(1,61,90,0.05); border-radius: 50%; }
.coaching-intro-content::after { content: ''; position: absolute; top: 80px; right: 0; width: 90px; height: 90px; border: 2px solid rgba(1,61,90,0.04); border-radius: 50%; }
.coaching-intro-inner { max-width: 480px; position: relative; z-index: 1; }
.coaching-intro-inner .subheading { color: var(--accent); margin-bottom: 10px; }
.coaching-intro-inner h2 { font-family: var(--font-heading); font-size: 38px; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.coaching-intro-inner p { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: rgba(1,61,90,0.65); margin-bottom: 14px; }
.coaching-intro-inner .service-link { color: var(--primary); border-bottom: 2px solid var(--accent); font-size: 13px; font-weight: 600; text-decoration: none; font-family: var(--font-body); padding-bottom: 2px; }
.coaching-intro-inner .service-link:hover { color: var(--accent); }
@media (max-width: 768px) {
    .coaching-intro-grid { grid-template-columns: 1fr; }
    .coaching-intro-image { height: 350px; }
    .coaching-intro-content { padding: 40px 24px; }
}

/* APPROACH — 2-col grid */
.approach { padding: 80px 20px; background-color: var(--light); position: relative; overflow: hidden; }
.approach::before { content: ''; position: absolute; bottom: -80px; left: -60px; width: 260px; height: 260px; border: 2px solid rgba(1,61,90,0.04); border-radius: 50%; }
.approach::after { content: ''; position: absolute; bottom: -30px; left: 40px; width: 160px; height: 160px; border: 2px solid rgba(1,61,90,0.03); border-radius: 50%; }
.approach-header { max-width: 1140px; margin: 0 auto 60px; position: relative; z-index: 1; }
.approach-header h2 { font-family: var(--font-heading); font-size: 40px; color: var(--primary); margin-bottom: 8px; }
.approach-header p { font-family: var(--font-body); font-size: 15px; color: rgba(1,61,90,0.6); max-width: 550px; }
.approach-steps { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; z-index: 1; }
.approach-step { padding: 44px 48px; border-bottom: 1px solid rgba(1,61,90,0.07); }
.approach-step:nth-child(odd) { border-right: 1px solid rgba(1,61,90,0.07); }
.approach-step:nth-child(1), .approach-step:nth-child(2) { border-top: 1px solid rgba(1,61,90,0.07); }
.step-num { font-family: var(--font-heading); font-size: 64px; font-weight: 300; color: rgba(1,61,90,0.06); line-height: 1; margin-bottom: 12px; }
.approach-step h3 { font-family: var(--font-heading); font-size: 26px; color: var(--primary); margin-bottom: 10px; }
.approach-step p { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: rgba(1,61,90,0.6); }
@media (max-width: 768px) {
    .approach-steps { grid-template-columns: 1fr; }
    .approach-step { border-right: none !important; padding: 32px 0; }
    .approach-step:nth-child(2) { border-top: none; }
}

/* PULL QUOTE — with sigle accent */
.pull-quote { padding: 80px 20px; background-color: var(--primary); text-align: center; position: relative; overflow: hidden; }
.pull-quote::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 320px; height: 320px; border: 1px solid rgba(134,161,188,0.08); border-radius: 50%; }
.pull-quote::after { content: ''; position: absolute; top: 50%; left: calc(50% + 60px); transform: translate(-50%, -50%); width: 220px; height: 220px; border: 1px solid rgba(134,161,188,0.06); border-radius: 50%; }
.pull-quote blockquote { max-width: 700px; margin: 0 auto; font-family: var(--font-heading); font-size: 32px; font-style: italic; font-weight: 300; line-height: 1.6; color: var(--light); position: relative; z-index: 1; }
.pull-quote cite { display: block; margin-top: 24px; font-family: var(--font-body); font-size: 13px; font-style: normal; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); position: relative; z-index: 1; }
.pull-quote .sigle-accent { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.04; height: 280px; width: auto; pointer-events: none; }

/* POUR QUI */
.pour-qui { padding: 80px 20px; background-color: var(--light); }
.pour-qui-header { max-width: 1140px; margin: 0 auto 50px; text-align: center; }
.pour-qui-header h2 { font-family: var(--font-heading); font-size: 40px; color: var(--primary); }
.pour-qui-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pq-card { padding: 48px 40px; border: 1px solid rgba(1,61,90,0.08); border-right: none; transition: background 0.3s ease; position: relative; overflow: hidden; }
.pq-card::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; border: 2px solid rgba(1,61,90,0.04); border-radius: 50%; transition: all 0.4s ease; }
.pq-card:hover::after { width: 120px; height: 120px; border-color: rgba(134,161,188,0.12); }
.pq-card:last-child { border-right: 1px solid rgba(1,61,90,0.08); }
.pq-card:hover { background: #fff; }
.pq-card-num { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 20px; letter-spacing: 1px; }
.pq-card h3 { font-family: var(--font-heading); font-size: 26px; color: var(--primary); margin-bottom: 6px; }
.pq-card-sub { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.pq-card p.pq-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: rgba(1,61,90,0.6); }
@media (max-width: 768px) {
    .pour-qui-grid { grid-template-columns: 1fr; }
    .pq-card { border-right: 1px solid rgba(1,61,90,0.08); border-bottom: none; }
    .pq-card:last-child { border-bottom: 1px solid rgba(1,61,90,0.08); }
}

/* COACHING PHOTO BREAK — full-bleed image with overlay text */
.photo-break { position: relative; height: 400px; overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-break-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(1,61,90,0.85) 0%, rgba(1,61,90,0.4) 100%); display: flex; align-items: center; padding: 0 20px; }
.photo-break-content { max-width: 1140px; margin: 0 auto; width: 100%; }
.photo-break-content h2 { font-family: var(--font-heading); font-size: 44px; color: var(--light); max-width: 500px; line-height: 1.2; margin-bottom: 12px; }
.photo-break-content p { font-family: var(--font-accent); font-size: 26px; color: var(--accent); max-width: 450px; }
@media (max-width: 768px) {
    .photo-break { height: 320px; }
    .photo-break-content h2 { font-size: 32px; }
}

/* PACKAGES */
.packages { padding: 80px 20px; background-color: var(--primary); position: relative; overflow: hidden; }
.packages::before { content: ''; position: absolute; top: -100px; left: -80px; width: 300px; height: 300px; border: 2px solid rgba(134,161,188,0.06); border-radius: 50%; }
.packages::after { content: ''; position: absolute; bottom: -60px; right: -40px; width: 200px; height: 200px; border: 2px solid rgba(134,161,188,0.05); border-radius: 50%; }
.packages-header { max-width: 1140px; margin: 0 auto 16px; text-align: center; position: relative; z-index: 1; }
.packages-header h2 { font-family: var(--font-heading); font-size: 40px; color: var(--light); }
.packages-rate { text-align: center; margin-bottom: 50px; position: relative; z-index: 1; }
.packages-rate p { font-family: var(--font-body); font-size: 14px; color: rgba(252,243,227,0.45); }
.packages-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 1; }
.pkg-card { padding: 48px 40px; background: rgba(252,243,227,0.04); border: 1px solid rgba(252,243,227,0.08); border-right: none; position: relative; display: flex; flex-direction: column; }
.pkg-card:last-child { border-right: 1px solid rgba(252,243,227,0.08); }
.pkg-card.featured { background: rgba(252,243,227,0.08); border-color: var(--accent); }
.pkg-card.featured::before { content: 'Populaire'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%) translateY(-100%); background: var(--accent); color: var(--primary); font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 20px; }
.pkg-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.pkg-card h3 { font-family: var(--font-heading); font-size: 30px; color: var(--light); margin-bottom: 16px; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pkg-price-amount { font-family: var(--font-heading); font-size: 44px; font-weight: 400; color: var(--light); line-height: 1; }
.pkg-saving { font-family: var(--font-body); font-size: 12px; color: var(--accent); font-weight: 500; margin-bottom: 24px; min-height: 18px; }
.pkg-divider { width: 100%; height: 1px; background: rgba(252,243,227,0.1); margin-bottom: 24px; }
.pkg-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.pkg-detail { font-family: var(--font-body); font-size: 13px; color: rgba(252,243,227,0.6); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-detail span { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pkg-cta { display: block; width: 100%; text-align: center; padding: 14px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s ease; text-decoration: none; }
.pkg-cta-primary { background: var(--accent); color: var(--primary); }
.pkg-cta-primary:hover { opacity: 0.9; }
.pkg-cta-outline { background: transparent; color: var(--light); border: 1px solid rgba(252,243,227,0.2); }
.pkg-cta-outline:hover { border-color: var(--accent); color: var(--accent); }
.packages-note { text-align: center; margin-top: 40px; position: relative; z-index: 1; }
.packages-note p { font-family: var(--font-body); font-size: 13px; color: rgba(252,243,227,0.35); }
@media (max-width: 768px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pkg-card { border-right: 1px solid rgba(252,243,227,0.08); border-bottom: none; }
    .pkg-card:last-child { border-bottom: 1px solid rgba(252,243,227,0.08); }
    .pkg-card.featured { border-color: var(--accent); }
    .pkg-card.featured::before { top: 0; transform: translateX(-50%); }
}

/* TESTIMONIAL EDITORIAL */
.testimonial-editorial { padding: 80px 20px; background-color: var(--light); position: relative; overflow: hidden; }
.testimonial-editorial::before { content: ''; position: absolute; bottom: -60px; right: -40px; width: 180px; height: 180px; border: 2px solid rgba(1,61,90,0.04); border-radius: 50%; }
.te-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.te-mark { font-family: var(--font-heading); font-size: 200px; font-weight: 300; line-height: 1; color: rgba(1,61,90,0.06); user-select: none; }
.te-content blockquote { font-family: var(--font-heading); font-size: 24px; font-style: italic; font-weight: 400; line-height: 1.7; color: var(--primary); margin-bottom: 24px; }
.te-author { display: flex; align-items: center; gap: 12px; }
.te-avatar { width: 44px; height: 44px; border-radius: 50%; background-color: var(--primary); color: var(--light); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 13px; font-weight: 600; }
.te-name { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--primary); }
.te-role { font-family: var(--font-body); font-size: 12px; color: rgba(1,61,90,0.5); }
@media (max-width: 768px) {
    .te-inner { grid-template-columns: 1fr; gap: 0; }
    .te-mark { font-size: 120px; margin-bottom: -40px; }
}

/* FAQ */
.faq { padding: 80px 20px; background-color: var(--primary); position: relative; overflow: hidden; }
.faq::before { content: ''; position: absolute; top: 50%; right: -100px; transform: translateY(-50%); width: 300px; height: 300px; border: 1px solid rgba(134,161,188,0.05); border-radius: 50%; }
.faq::after { content: ''; position: absolute; top: calc(50% + 40px); right: -40px; transform: translateY(-50%); width: 180px; height: 180px; border: 1px solid rgba(134,161,188,0.04); border-radius: 50%; }
.faq-header { max-width: 700px; margin: 0 auto 50px; text-align: center; position: relative; z-index: 1; }
.faq-header h2 { font-family: var(--font-heading); font-size: 40px; color: var(--light); }
.faq-list { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item { border-bottom: 1px solid rgba(252,243,227,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(252,243,227,0.08); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-question span { font-family: var(--font-heading); font-size: 22px; color: var(--light); padding-right: 20px; }
.faq-question .faq-toggle { font-family: var(--font-body); font-size: 20px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; padding: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: rgba(252,243,227,0.55); padding-bottom: 24px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ABOUT CTA FORM — circle accents */
.about-cta-form { position: relative; overflow: hidden; }
.about-cta-form::before { content: ''; position: absolute; top: -80px; left: -60px; width: 220px; height: 220px; border: 2px solid rgba(1,61,90,0.04); border-radius: 50%; }
.about-cta-form::after { content: ''; position: absolute; bottom: -40px; right: -30px; width: 160px; height: 160px; border: 2px solid rgba(1,61,90,0.03); border-radius: 50%; }

/* ══════════════════════════════════════════════
   FORMATIONS UFC PAGE
   ══════════════════════════════════════════════ */

/* FORMATION CARDS GRID */
.formations-section { padding: 80px 20px; background-color: var(--light); }
.formations-section.dark { background-color: var(--primary); }
.formations-header { max-width: 1140px; margin: 0 auto 16px; }
.formations-header h2 { font-family: var(--font-heading); font-size: 40px; color: var(--primary); margin-bottom: 8px; }
.formations-section.dark .formations-header h2 { color: var(--light); }
.formations-header p { font-family: var(--font-body); font-size: 15px; color: rgba(1,61,90,0.6); max-width: 600px; }
.formations-section.dark .formations-header p { color: rgba(252,243,227,0.5); }
.formations-badge-row { max-width: 1140px; margin: 0 auto 50px; display: flex; gap: 12px; flex-wrap: wrap; }
.formations-badge { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border: 1px solid rgba(1,61,90,0.12); color: var(--primary); }
.formations-section.dark .formations-badge { border-color: rgba(134,161,188,0.3); color: var(--accent); }

.formations-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.formation-card { padding: 44px 44px; border: 1px solid rgba(1,61,90,0.07); border-right: none; border-bottom: none; position: relative; display: flex; flex-direction: column; transition: background 0.3s ease; overflow: hidden; }
.formation-card::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; border: 2px solid rgba(1,61,90,0.03); border-radius: 50%; transition: all 0.4s ease; }
.formation-card:hover::after { width: 120px; height: 120px; border-color: rgba(134,161,188,0.1); }
.formation-card:hover { background: #fff; }
.formation-card:nth-child(2n) { border-right: 1px solid rgba(1,61,90,0.07); }
.formation-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(1,61,90,0.07); }
/* Handle odd last row */
.formation-card:nth-child(2n+1):last-child { border-right: 1px solid rgba(1,61,90,0.07); }
.formation-card:first-child, .formation-card:nth-child(2) { border-top: 1px solid rgba(1,61,90,0.07); }

/* Dark variant */
.formations-section.dark .formation-card { border-color: rgba(252,243,227,0.06); background: rgba(252,243,227,0.02); }
.formations-section.dark .formation-card:hover { background: rgba(252,243,227,0.06); }
.formations-section.dark .formation-card::after { border-color: rgba(134,161,188,0.04); }
.formations-section.dark .formation-card:hover::after { border-color: rgba(134,161,188,0.1); }

.formation-ufc-badge { display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; background: var(--accent); color: var(--primary); margin-bottom: 16px; width: fit-content; }
.formations-section.dark .formation-ufc-badge { background: var(--accent); color: var(--primary); }

.formation-card h3 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 16px; line-height: 1.3; flex-grow: 1; }
.formations-section.dark .formation-card h3 { color: var(--light); }

.formation-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.formation-meta-item { font-family: var(--font-body); font-size: 12px; color: rgba(1,61,90,0.5); display: flex; align-items: center; gap: 5px; }
.formation-meta-item span { font-size: 14px; }
.formations-section.dark .formation-meta-item { color: rgba(252,243,227,0.4); }

.formation-price { font-family: var(--font-heading); font-size: 30px; font-weight: 400; color: var(--primary); margin-bottom: 4px; }
.formations-section.dark .formation-price { color: var(--light); }
.formation-price-note { font-family: var(--font-body); font-size: 11px; color: rgba(1,61,90,0.4); margin-bottom: 20px; }
.formations-section.dark .formation-price-note { color: rgba(252,243,227,0.3); }

.formation-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: rgba(1,61,90,0.6); margin-bottom: 24px; }
.formations-section.dark .formation-desc { color: rgba(252,243,227,0.5); }

.formation-cta { display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; margin-top: auto; width: fit-content; }
.formation-cta:hover { color: var(--accent); }
.formations-section.dark .formation-cta { color: var(--light); }
.formations-section.dark .formation-cta:hover { color: var(--accent); }

@media (max-width: 768px) {
    .formations-grid { grid-template-columns: 1fr; }
    .formation-card { border-right: 1px solid rgba(1,61,90,0.07) !important; }
    .formation-card { padding: 32px 24px; }
    .formations-section.dark .formation-card { border-color: rgba(252,243,227,0.06) !important; }
}

/* FORMAT BANNER — info strip between sections */
.format-banner { background-color: var(--primary); padding: 48px 20px; position: relative; overflow: hidden; }
.format-banner::before { content: ''; position: absolute; top: -40px; right: -30px; width: 160px; height: 160px; border: 2px solid rgba(134,161,188,0.08); border-radius: 50%; }
.format-banner::after { content: ''; position: absolute; top: 10px; right: 40px; width: 100px; height: 100px; border: 2px solid rgba(134,161,188,0.05); border-radius: 50%; }
.format-banner-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 1; }
.format-item { text-align: center; }
.format-icon { font-size: 28px; margin-bottom: 10px; }
.format-title { font-family: var(--font-heading); font-size: 20px; color: var(--light); margin-bottom: 6px; }
.format-desc { font-family: var(--font-body); font-size: 13px; color: rgba(252,243,227,0.5); line-height: 1.6; }
@media (max-width: 768px) {
    .format-banner-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* CUSTOM TRAINING CTA */
.custom-training { padding: 80px 20px; background-color: var(--primary); text-align: center; position: relative; overflow: hidden; }
.custom-training::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; border: 1px solid rgba(134,161,188,0.06); border-radius: 50%; }
.custom-training::after { content: ''; position: absolute; top: calc(50% - 40px); left: calc(50% + 50px); transform: translate(-50%, -50%); width: 200px; height: 200px; border: 1px solid rgba(134,161,188,0.04); border-radius: 50%; }
.custom-training-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.custom-training-inner h2 { font-family: var(--font-heading); font-size: 36px; color: var(--light); margin-bottom: 16px; line-height: 1.3; }
.custom-training-inner p { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: rgba(252,243,227,0.55); margin-bottom: 32px; }
.custom-training-cta { display: inline-block; background: var(--accent); color: var(--primary); padding: 14px 32px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border: none; cursor: pointer; text-decoration: none; transition: opacity 0.3s ease; }
.custom-training-cta:hover { opacity: 0.9; }

.photo-break--formations {
    height: 500px;
    background-image: url('/images/formation-photo-break.jpg');
    background-size: 120%;
    background-position: 0% 30%;
    background-repeat: no-repeat;
    background-color: var(--primary);
}

.photo-break--formations img {
    display: none;
}