/**
 * Capsule Theme — Custom CSS
 * Design source : Figma CAPSULE (node 100-33)
 * Palette : #FED60F (solar-yellow) | #0C0C0C (oil-black) | #FFFCFD (white)
 * Typo : Outfit + Sora + Plus Jakarta Sans
 *
 * @package Capsule
 * @version 3.0.0
 */

/* ─── CSS Variables ─── */
:root {
    --solar-yellow: #FED60F;
    --oil-black: #0C0C0C;
    --duration-s: 0.45s;
    --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Base ─── */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--oil-black);
    color: #FFFCFD;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0C0C0C; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--solar-yellow); }

/* ─── Utility Classes ─── */
.text-solar-yellow { color: var(--solar-yellow); }
.bg-solar-yellow { background-color: var(--solar-yellow); }
.border-solar-yellow { border-color: var(--solar-yellow); }
.bg-oil-black { background-color: var(--oil-black); }

/* ─── Scroll Reveal Animation ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ─── Testimonial Slider ─── */
@keyframes testimonialExit {
    0%   { opacity: 1; transform: translateY(0); filter: blur(0); }
    100% { opacity: 0; transform: translateY(-30px); filter: blur(10px); }
}
@keyframes testimonialEntry {
    0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.testimonial-exit { animation: testimonialExit 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards; }
.testimonial-entry { animation: testimonialEntry 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards; }

/* ─── Blob Floating Animation ─── */
@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(10%, -15%) scale(1.1); }
    66%  { transform: translate(-15%, 10%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(120px);
    z-index: 0; opacity: 0.2; animation: float 15s infinite ease-in-out; pointer-events: none;
}

/* ─── Marquee ─── */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ─── Navigation Link Pill Animation ─── */
.navlink {
    transition: color var(--duration-s) var(--smooth-ease);
    text-transform: uppercase;
    border-radius: .714286em;
    padding: .428571em .857143em;
    position: relative;
    display: flex; align-items: center; gap: 0.5em;
    z-index: 1;
    font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.navlink::before {
    content: ''; position: absolute; inset: 0;
    background-color: white; border-radius: inherit; z-index: -1;
    transform: scale(0.85); opacity: 0;
    transition: transform var(--duration-s) var(--smooth-ease),
    opacity var(--duration-s) var(--smooth-ease);
}
.navlink:hover { color: black !important; }
.navlink:hover::before { transform: scale(1); opacity: 1; }
.navlink.active { color: var(--solar-yellow) !important; }
.navlink.active:hover { color: black !important; }

/* ─── Navbar scroll state ─── */
.navbar-scrolled {
    background: #FCFCFC !important;
    border-bottom: 1px solid rgba(13, 33, 29, 0.12) !important;
}

/* ─── SVG Icons ─── */
.capsule-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ─── Project Showcase Transitions ─── */
.showcase-fade-enter { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.showcase-fade-active { opacity: 1; transform: translateY(0); }

/* ─── FAQ Accordion ─── */
.faq-answer {
    overflow: hidden; max-height: 0; opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}
.faq-answer.open { max-height: 400px; opacity: 1; margin-top: 1rem; }

/* ─── Contact Form ─── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }

/* ─── WordPress overrides ─── */
.wp-block-image img { max-width: 100%; height: auto; }
body.admin-bar .fixed { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .fixed { top: 46px; } }

/* ═══════════════════════════════════════════
   CAPSULE REDESIGN — FIGMA NODE 100-33
═══════════════════════════════════════════ */

/* ─── Fonts ─── */
.font-sora    { font-family: 'Sora', sans-serif; }
.font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── HERO LIGHT SECTION ─── */
#hero-light { background: #ffffff; color: #0d211d; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
    color: #1a1a1a; letter-spacing: -0.01em; cursor: default;
}
.hero-badge-picto {
    width: 28px; height: 28px; object-fit: contain; flex-shrink: 0;
}
.hero-h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 600; line-height: 1.1; letter-spacing: -0.06em; color: #0d211d;
}
.hero-badge-word {
    display: inline-block; background: #FFD90E; color: #ffffff;
    border: 4px solid #ffffff; border-radius: 20px; padding: 4px 24px;
    transform: rotate(2.94deg);
    box-shadow: 0 18px 18px rgba(0,0,0,0.04), 0 40px 25px rgba(0,0,0,0.03);
    white-space: nowrap; margin-left: 8px; vertical-align: middle; position: relative; top: -4px;
}
.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px); font-weight: 500;
    color: rgba(13, 33, 29, 0.73); line-height: 1.6; letter-spacing: -0.01em;
}
.hero-steps {
    display: flex; align-items: center; gap: 0;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600;
    color: #0d211d; flex-wrap: wrap; justify-content: center;
}
.hero-step { display: flex; align-items: center; gap: 10px; padding: 0 24px; }
.hero-step-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.hero-divider { width: 1px; height: 16px; background: rgba(13, 33, 29, 0.15); flex-shrink: 0; }

/* Hero CTAs */
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: #30343b; color: #ffffff; border: 1px solid #0d211d; border-bottom-width: 3px;
    border-radius: 14px; padding: 16px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.3s var(--smooth-ease);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35), inset 0 -5px 0 rgba(255,255,255,0.15);
    white-space: nowrap; letter-spacing: -0.01em;
}
.btn-hero-primary:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), inset 0 -5px 0 rgba(255,255,255,0.15);
    color: #ffffff;
}
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: #ffffff; color: #0d211d; border: 1px solid #0e221e; border-bottom-width: 3px;
    border-radius: 14px; padding: 16px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: 0 5px 8.6px rgba(0, 0, 0, 0.22), 0 3px 0 #000, inset 0 -5px 0 rgba(0,0,0,0.05);
    white-space: nowrap; letter-spacing: -0.01em;
}
.btn-hero-secondary:hover {
    color: #0d211d;
    transform: translateY(2px);
    /*! box-shadow: 0 5px 8.6px rgba(108,219,196,0.22), 0 1px 0 #0e221e, inset 0 -5px 0 rgba(0,0,0,0.05); */
}
.btn-hero-secondary .arrow-icon { width: 26px; height: 26px; object-fit: contain; }

/* Hero mini testimonial */
.hero-testimonial {
    display: flex; align-items: center; gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; color: #000000;
    text-align: center; flex-direction: column;
    /*! max-width: 19rem; */
    align-items: center !important;
    justify-content: center !important;
}
.hero-testimonial-quote { font-size: 13px; line-height: 1.7; color: #000000; }
.hero-testimonial-meta { display: flex; align-items: center; gap: 12px; }
.hero-testimonial-avatars { display: flex; align-items: center; }
.hero-testimonial-avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
    border: 2px solid #fff; box-shadow: 0 9px 19px rgba(0,0,0,0.1); flex-shrink: 0;
}
.hero-testimonial-avatar + .hero-testimonial-avatar { margin-left: -10px; }

/* Logos marquee light */
.marquee-wrap-light {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    overflow: hidden;
}
.marquee-list-light {
    display: flex; align-items: center; animation: marquee 35s linear infinite;
}
.logo-item-light {
    flex-shrink: 0; width: 170px; height: 44px; margin-right: 24px;
    display: flex; align-items: center; justify-content: center; border-radius: 12px;
}
.logo-item-light img {
    max-width: 150px; max-height: 40px; object-fit: contain;
    opacity: 0.85; filter: grayscale(0.2); transition: opacity 0.3s, filter 0.3s;
}
.logo-item-light img:hover { opacity: 1; filter: none; }

/* ─── SECTION 360 STRATEGY (dark) ─── */
.section-360 {
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse 200% 100% at 50% 50%, rgba(255,217,14,0.10) 0%, rgba(255,217,14,0) 85%),
    linear-gradient(180deg, rgba(255,217,14,0) 15%, rgba(255,217,14,0.05) 100%),
    #191919;
    border-radius: 0;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .section-360 { min-height: 960px; display: flex; align-items: center; }
    .section-360 > * { width: 100%; }
}
.orbit-tag {
    position: absolute; display: flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: 9999px; background: rgba(0, 0, 0, 0.6);
    border-width: 2px; border-style: solid; backdrop-filter: blur(6px);
    white-space: nowrap; transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 900;
    letter-spacing: 2.2px; text-transform: uppercase;
}
.strategy-list li {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 1.1px; text-transform: uppercase; color: white;
}

/* ─── SECTION BESOINS (white) ─── */
.section-besoins { background: #ffffff; color: #0d211d; }
.besoins-badge {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 100%), #FED60F;
    border: 4px solid #ffffff; border-radius: 20px; padding: 10px 24px;
    font-family: 'Sora', sans-serif; font-size: clamp(40px, 5vw, 62px);
    font-weight: 600; color: #000000; letter-spacing: -0.06em;
    transform: rotate(-3deg);
    box-shadow: 0 18px 18px rgba(0,0,0,0.04), 0 40px 25px rgba(0,0,0,0.03);
    display: inline-block; vertical-align: middle; margin-right: 8px;
}
.besoins-h2 {
    font-family: 'Sora', sans-serif; font-size: clamp(40px, 5vw, 62px);
    font-weight: 600; color: #0d211d; letter-spacing: -0.06em; line-height: 1.1;
}
.testimonial-card-dark {
    background: #242424; border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px; padding: 28px;
    box-shadow: 0 4.6px 10px rgba(0,0,0,0.05), 0 18px 18px rgba(0,0,0,0.04);
}

/* ─── IMAGE GALLERY ROWS ─── */
.gallery-section { overflow: hidden; position: relative; }
.gallery-section::before, .gallery-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.gallery-section::before { left: 0; background: linear-gradient(90deg, #ffffff 0%, transparent 100%); }
.gallery-section::after  { right: 0; background: linear-gradient(270deg, #ffffff 0%, transparent 100%); }
.gallery-row { display: flex; gap: 24px; animation: marquee 40s linear infinite; }
.gallery-row.reverse { animation: marquee-reverse 45s linear infinite; }
.gallery-item { flex-shrink: 0; width: 500px; height: 360px; border-radius: 22px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── SECTION FAQ (white) ─── */
.section-faq { background: #ffffff; color: #0d211d; }
.faq-h2-new {
    font-family: 'Outfit', sans-serif; font-size: clamp(42px, 5vw, 60px);
    font-weight: 900; letter-spacing: -0.05em; text-transform: uppercase; color: #242424;
}
.faq-h2-new span { color: #FED60F; }
.faq-item-new { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 24px 0; }
.faq-toggle-new {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; background: none; border: none; cursor: pointer; text-align: left; gap: 16px;
}
.faq-toggle-new .faq-q {
    font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #242424; line-height: 1.4;
}
.faq-toggle-new .faq-plus {
    flex-shrink: 0; color: rgba(0,0,0,0.3); transition: transform 0.3s var(--smooth-ease), color 0.3s;
}
.faq-item-new.open .faq-plus { transform: rotate(45deg); color: var(--solar-yellow); }
.faq-mini-cta {
    border-radius: 30px; padding: 40px 50px;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255,217,14,0.08) 0%, rgba(255,217,14,0) 85%),
    linear-gradient(180deg, rgba(254,214,15,0) 15%, rgba(254,214,15,0.05) 100%), #191919;
    box-shadow: 0 34px 34px rgba(0,0,0,0.09), 0 9px 19px rgba(0,0,0,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.12), inset 0 0 32px rgba(255,255,255,0.05);
    text-align: center; max-width: 820px; margin: 0 auto;
}
.faq-mini-cta h3 {
    font-family: 'Sora', sans-serif; font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600; color: #ffffff; letter-spacing: -0.06em; margin-bottom: 12px;
}
.faq-mini-cta p {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 500;
    color: rgba(255,255,255,0.73); margin-bottom: 32px;
}
.btn-yellow {
    display: inline-flex; align-items: center; gap: 10px;
    background: #FFD90E; color: #0d211d; border: 1px solid #FED60F; border-bottom-width: 3px;
    border-radius: 14px; padding: 16px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700;
    text-decoration: none; transition: transform 0.3s var(--smooth-ease), box-shadow 0.3s var(--smooth-ease);
    box-shadow: 0 4px 10px rgba(255,217,14,0.3);
}
.btn-yellow:hover { color: #0d211d; }

/* ─── SECTION FINAL CTA (dark) ─── */
.section-final-cta {
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse 200% 100% at 50% 50%, rgba(255,217,14,0.10) 0%, rgba(255,217,14,0) 85%),
    linear-gradient(180deg, rgba(255,217,14,0) 15%, rgba(255,217,14,0.05) 100%), #191919;
    position: relative; overflow: hidden;
    border-radius: 0; border-top: 1px solid rgba(255,255,255,0.05);
}
.section-final-cta .yellow-blob-1 {
    position: absolute; width: 500px; height: 500px; background: #fed60f;
    border-radius: 50%; filter: blur(90px); left: -214px; top: -204px;
    opacity: 0.81; pointer-events: none;
}
.section-final-cta .yellow-blob-2 {
    position: absolute; width: 425px; height: 295px; background: #fed60f;
    border-radius: 200px; filter: blur(148px); right: -91px; bottom: -120px;
    opacity: 0.8; pointer-events: none;
}
.cta-experts { display: flex; align-items: center; justify-content: center; gap: 0; }
.cta-expert-avatar {
    width: 48px; height: 48px; border-radius: 50%; border: 2px solid #0a0a0a;
    overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.1);
}
.cta-expert-avatar + .cta-expert-avatar { margin-left: -12px; }
.cta-experts-chip {
    margin-left: 0; display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px; padding: 0 16px; height: 48px;
    font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase; backdrop-filter: blur(6px);
}
.cta-experts-chip .nb  { color: #FED60F; }
.cta-experts-chip .lbl { color: #ffffff; margin-left: 2px; }
.cta-h2 {
    font-family: 'Outfit', sans-serif; font-size: clamp(40px, 5vw, 72px);
    font-weight: 800; color: #ffffff; letter-spacing: -0.05em; line-height: 1.05; text-align: center;
}
.cta-sub {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.74); text-align: center; line-height: 1.6;
}

/* ─── FOOTER INSIDE CTA ─── */
.cta-footer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; margin-top: 60px; }
.cta-footer-nav h4 {
    font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; color: #ffffff; margin-bottom: 20px;
}
.cta-footer-nav a {
    display: block; font-family: 'Outfit', sans-serif; font-size: 14px;
    color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color 0.2s;
}
.cta-footer-nav a:hover { color: #ffffff; }
.cta-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; margin-top: 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.cta-footer-bottom p {
    font-family: 'Outfit', sans-serif; font-size: 10px;
    color: rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase;
}
.trustpilot-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px; padding: 8px 20px; backdrop-filter: blur(8px);
    font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; color: white;
}
.trustpilot-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.trustpilot-badge .tp-label { color: #34D399; letter-spacing: 0.6px; text-transform: uppercase; }

/* ─── Navbar nav links hover ─── */
.nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 15px; border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 500;
    color: #0D211D; text-decoration: none;
    transition: background 0.2s ease;
}
.nav-link:hover {
    background: rgba(30, 30, 30, 0.40);
    color: #ffffff;
}
.nav-link:hover svg path { stroke: #ffffff; }

/* ─── Dark Navbar on White Hero ─── */


/* ─── Hero Testimonial Slide ─── */
.hero-testimonial-slide { width: 25%; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.hero-testimonial-slide:not(.hidden) { display: flex !important; }

/* ─── Dropdown Sous-menu (wp_nav_menu) ─── */
.capsule-has-dropdown { position: relative; }

.capsule-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(13,33,29,0.10);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    list-style: none;
    margin: 0;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1),
                transform 0.22s cubic-bezier(0.16,1,0.3,1),
                visibility 0.22s;
    z-index: 100;
}

/* Petite flèche décorative */
.capsule-submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.capsule-has-dropdown:hover .capsule-submenu,
.capsule-has-dropdown:focus-within .capsule-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.capsule-has-dropdown:hover .capsule-chevron,
.capsule-has-dropdown:focus-within .capsule-chevron {
    transform: rotate(180deg);
}

.capsule-submenu-link {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0D211D;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.capsule-submenu-link:hover {
    background: #FED60F;
    color: #0D211D;
}

/* ─── Mobile nav (dans le menu overlay) ─── */
.capsule-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.capsule-mobile-nav li > a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0D211D;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}
.capsule-mobile-nav .sub-menu {
    list-style: none;
    padding: 8px 0 8px 20px;
    margin: 0;
}
.capsule-mobile-nav .sub-menu li > a {
    font-size: 20px;
    font-weight: 500;
    color: rgba(13,33,29,0.6);
}
.capsule-mobile-nav .sub-menu li > a:hover { color: #0D211D; }

/* ─── Blog pagination ─── */
.nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.nav-links .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
    color: #0d211d; text-decoration: none;
    border: 1px solid rgba(13,33,29,0.12); transition: background 0.2s;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current { background: #FED60F; border-color: #FED60F; }
.nav-links .prev, .nav-links .next {
    width: auto; padding: 0 14px; gap: 6px;
    display: inline-flex; align-items: center;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero-h1 { font-size: 42px; }
    .hero-badge-word { font-size: 36px; border-radius: 14px; padding: 2px 16px; }
    .hero-steps { flex-direction: column; gap: 12px; }
    .hero-divider { display: none; }
    .hero-step { justify-content: center; }
    .besoins-h2 { font-size: 36px; }
    .besoins-badge { font-size: 36px; }
    .gallery-item { width: 300px; height: 240px; }
    .section-final-cta { border-radius: 16px 16px 0 0; }
    .cta-h2 { font-size: 38px; }
    .orbit-tag { font-size: 9px; padding: 7px 14px; }
}
