/* ============================================================================
   SNAZZY ISY-PV PAGE — FRONTEND CSS
   Design system aligned with Snazzy Isypv Produits (palette, atmosphere, type).
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================================
   1. DESIGN TOKENS / RESET
   ============================================================================ */
.sipp-home {
    /* ----- Brand palette ----- */
    --c-brand-navy:    #1c1f5a;
    --c-brand-blue:    #0438c7;
    --c-brand-blue-2:  #1e54e8;
    --c-brand-orange:  #ffb000;

    /* ----- Surfaces ----- */
    --c-bg:        #ffffff;
    --c-bg-2:      #f7f8fc;
    --c-bg-3:      #eef0f9;
    --c-bg-dark:   #0c1238;
    --c-bg-dark-2: #131a48;

    /* ----- Text ----- */
    --c-text:      #1c1f5a;
    --c-text-2:    #2c3275;
    --c-text-3:    #5d6293;
    --c-text-4:    #8d92b5;

    /* ----- Strokes ----- */
    --c-line:      rgba(28, 31, 90, 0.10);
    --c-line-2:    rgba(28, 31, 90, 0.16);
    --c-line-dark: rgba(255, 255, 255, 0.10);

    /* ----- Effects ----- */
    --shadow-sm:   0 2px 8px -2px rgba(28, 31, 90, 0.08);
    --shadow-md:   0 12px 32px -12px rgba(28, 31, 90, 0.18);
    --shadow-lg:   0 30px 80px -28px rgba(28, 31, 90, 0.30);
    --shadow-blue: 0 14px 40px -10px rgba(4, 56, 199, 0.40);
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --r-sm:        12px;
    --r-md:        18px;
    --r-lg:        26px;
    --r-xl:        36px;

    /* ----- Typography ----- */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--c-text-2);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "kern", "cv11";
    letter-spacing: -0.005em;

    /* Contain full-bleed elements without triggering scroll-anchor jank */
    overflow-x: hidden;
    overflow-anchor: none;       /* prevents scroll catch-up on hidden→visible content */
    overscroll-behavior-y: auto; /* no chained scroll lock */
}

.sipp-home *,
.sipp-home *::before,
.sipp-home *::after { box-sizing: border-box; }

.sipp-home img { max-width: 100%; height: auto; display: block; }

/* ============================================================================
   2. SHARED UTILITIES (section title, intro, CTA, highlights)
   ============================================================================ */

/* ----- Section structure ----- */
.sipp-home section { position: relative; }

.sipp-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.sipp-section-title {
    font-size: clamp( 32px, 4.2vw, 52px );
    font-weight: 800;
    color: var(--c-brand-navy);
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-align: center;
}

.sipp-section-title-light {
    color: #ffffff;
}

.sipp-section-intro {
    font-size: clamp( 15px, 1.4vw, 17px );
    color: var(--c-text-3);
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1.6;
}

.sipp-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ----- Highlights (markdown **word**) ----- */
.sipp-hl {
    color: var(--c-brand-blue);
    position: relative;
    white-space: nowrap;
}

.sipp-hl-orange {
    color: var(--c-brand-orange);
}

.sipp-hero-hl {
    color: var(--c-brand-blue);
    background: linear-gradient(180deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----- CTAs (universal) ----- */
.sipp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: -0.005em;
    transition: all 0.28s var(--ease);
    cursor: pointer;
    line-height: 1;
    border: 0;
    font-family: inherit;
}
.sipp-cta svg { width: 14px; height: 14px; transition: transform 0.28s var(--ease); flex-shrink: 0; }

.sipp-cta-primary {
    background: var(--c-brand-blue);
    color: #fff !important;
    box-shadow: var(--shadow-blue);
}
.sipp-cta-primary:hover {
    background: #032cab;
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(4, 56, 199, 0.55);
}
.sipp-cta-primary:hover svg { transform: translateX(3px); }

.sipp-cta-secondary {
    background: transparent;
    color: var(--c-brand-navy) !important;
    border: 1.5px solid var(--c-line-2);
}
.sipp-cta-secondary:hover {
    background: var(--c-brand-navy);
    color: #fff !important;
    border-color: var(--c-brand-navy);
    transform: translateY(-2px);
}
.sipp-cta-secondary:hover svg { transform: translateX(3px); }

.sipp-cta-on-dark {
    background: #fff;
    color: var(--c-brand-navy) !important;
    box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.4);
}
.sipp-cta-on-dark:hover {
    background: var(--c-brand-orange);
    color: var(--c-brand-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(255, 176, 0, 0.5);
}
.sipp-cta-on-dark:hover svg { transform: translateX(3px); }

/* ============================================================================
   3. HERO — full-bleed atmospheric (mirror of plugin produits v2.8.1)
   ============================================================================ */
.sipp-hero {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 90px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 65% 50% at 18% 28%, rgba(4, 56, 199, 0.085) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 82% 32%, rgba(255, 176, 0, 0.085) 0%, transparent 60%),
        linear-gradient(180deg, #f3f6ff 0%, #f7f9ff 35%, #fbfcff 70%, #ffffff 100%);
}

/* Dot grid pattern in upper-center, fades out before bottom */
.sipp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(28, 31, 90, 0.06) 1px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 55% at 50% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 40%, #000 0%, transparent 75%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.sipp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 460px;
}

/* Left: content */
.sipp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 640px;
}

.sipp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 12px;
    background: rgba(4, 56, 199, 0.07);
    border: 1px solid rgba(4, 56, 199, 0.18);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: var(--c-brand-blue);
    align-self: flex-start;
    margin: 0;
    text-transform: uppercase;
}
.sipp-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-brand-orange);
    box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.18);
    animation: sippPulse 2.4s ease-in-out infinite;
}
@keyframes sippPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 176, 0, 0.06); }
}

.sipp-hero-title {
    font-size: clamp( 38px, 5.4vw, 68px );
    font-weight: 800;
    color: var(--c-brand-navy);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0;
}

.sipp-hero-subtitle {
    font-size: clamp( 16px, 1.5vw, 18px );
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
}

.sipp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

/* Right: visual */
.sipp-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sipp-hero-img-glow {
    position: absolute;
    inset: 8% 8% 8% 8%;
    background: radial-gradient(circle at 50% 50%, rgba(4, 56, 199, 0.14) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}
.sipp-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
}
.sipp-hero-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: sippFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(28, 31, 90, 0.18));
}
@keyframes sippFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ============================================================================
   4. PITCH — intro paragraphs with image
   ============================================================================ */
.sipp-pitch {
    padding: 90px 0;
    background: #ffffff;
}

.sipp-pitch-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.sipp-pitch-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sipp-pitch-content p {
    font-size: 17px;
    color: var(--c-text-2);
    line-height: 1.65;
    margin: 0;
}

.sipp-pitch-tagline {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 19px !important;
    font-weight: 700;
    color: var(--c-brand-navy) !important;
    margin-top: 8px !important;
    padding-left: 0;
    line-height: 1.4 !important;
}
.sipp-pitch-tagline-mark {
    flex-shrink: 0;
    width: 4px;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--c-brand-blue) 0%, var(--c-brand-orange) 100%);
    margin-top: 3px;
}

.sipp-pitch-img {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sipp-pitch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ============================================================================
   5. CONFIGURATIONS — 2 card grid
   ============================================================================ */
.sipp-configs {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.sipp-configs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.sipp-config-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    padding: 40px 36px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    transition: all 0.32s var(--ease);
    position: relative;
    overflow: hidden;
}
.sipp-config-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-brand-blue) 0%, var(--c-brand-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.sipp-config-card:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
}
.sipp-config-card:hover::before { opacity: 1; }

.sipp-config-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(4, 56, 199, 0.08), rgba(4, 56, 199, 0.02));
    border: 1px solid rgba(4, 56, 199, 0.15);
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.sipp-config-card-icon svg { width: 32px; height: 32px; }

.sipp-config-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}

.sipp-config-card-text {
    font-size: 15px;
    color: var(--c-text-3);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================================
   6. STATS — dark navy band with 4 KPIs
   ============================================================================ */
.sipp-stats {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 70px 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(4, 56, 199, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255, 176, 0, 0.10) 0%, transparent 60%),
        linear-gradient(135deg, #0a1138 0%, #1a2168 100%);
}
.sipp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1.2px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 0%, transparent 80%);
    pointer-events: none;
    opacity: 0.5;
}

.sipp-stats-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.sipp-stat {
    text-align: center;
    color: #ffffff;
    position: relative;
}
.sipp-stat + .sipp-stat::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
}

.sipp-stat-value {
    display: block;
    font-size: clamp( 36px, 4vw, 54px );
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.sipp-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ============================================================================
   7. PRODUCTS — 4 card grid
   ============================================================================ */
.sipp-products {
    padding: 110px 0;
    background: #ffffff;
    scroll-margin-top: 80px;
}

.sipp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.sipp-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-line);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    position: relative;
    opacity: 0;
    animation: sippCardIn 0.6s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
}
@keyframes sippCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sipp-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(4, 56, 199, 0.20);
}

.sipp-product-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    overflow: hidden;
}
.sipp-product-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(4, 56, 199, 0.06) 0%, transparent 60%);
    z-index: 0;
}
.sipp-product-card-img img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
    filter: drop-shadow(0 14px 30px rgba(28, 31, 90, 0.18));
}
.sipp-product-card:hover .sipp-product-card-img img {
    transform: scale(1.06) translateY(-4px);
}

.sipp-product-card-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sipp-product-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-brand-navy);
    margin: 0;
    letter-spacing: -0.02em;
}

.sipp-product-card-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-brand-blue);
    margin: 0 0 8px;
    line-height: 1.4;
}

.sipp-product-card-text {
    font-size: 13.5px;
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.sipp-product-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-brand-blue);
    margin-top: auto;
    transition: gap 0.28s var(--ease);
}
.sipp-product-card-arrow svg { width: 13px; height: 13px; transition: transform 0.28s var(--ease); }
.sipp-product-card:hover .sipp-product-card-arrow { gap: 10px; }
.sipp-product-card:hover .sipp-product-card-arrow svg { transform: translateX(2px); }

/* ============================================================================
   8. WHY — dark navy section with image + features list
   ============================================================================ */
.sipp-why {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(4, 56, 199, 0.30) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 20% 80%, rgba(255, 176, 0, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, #0c1238 0%, #1a2168 50%, #0c1238 100%);
}
.sipp-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
    pointer-events: none;
    opacity: 0.6;
}

.sipp-why-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
}

.sipp-why-img {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4 / 5;
}
.sipp-why-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12, 18, 56, 0.4) 100%);
    pointer-events: none;
}
.sipp-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sipp-why-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sipp-why-feat {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}
.sipp-why-feat:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.sipp-why-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px -4px rgba(4, 56, 199, 0.5);
}
.sipp-why-feat-icon svg { width: 24px; height: 24px; }

.sipp-why-feat-text {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.55;
    align-self: center;
}

/* ============================================================================
   9. STEPS — 3 numbered cards with arrows
   ============================================================================ */
.sipp-steps {
    padding: 110px 0;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.sipp-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
    flex-wrap: nowrap;
}

.sipp-step {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    position: relative;
    text-align: center;
}
.sipp-step:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
}

.sipp-step-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--c-brand-blue);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(4, 56, 199, 0.07);
    border-radius: 999px;
}

.sipp-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}

.sipp-step-text {
    font-size: 14px;
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0;
}

.sipp-step-arrow {
    flex-shrink: 0;
    color: var(--c-brand-blue);
    opacity: 0.55;
}
.sipp-step-arrow svg { width: 40px; height: 20px; }

/* ============================================================================
   10. FAQ — accordion with brand-styled summary
   ============================================================================ */
.sipp-faq {
    padding: 110px 0;
    background: #ffffff;
}

.sipp-faq-inner { max-width: 880px; }

.sipp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.sipp-faq-item {
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.sipp-faq-item[open] {
    border-color: rgba(4, 56, 199, 0.25);
    box-shadow: var(--shadow-md);
}
.sipp-faq-item:hover { border-color: rgba(4, 56, 199, 0.18); }

.sipp-faq-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s;
}
.sipp-faq-summary::-webkit-details-marker { display: none; }
.sipp-faq-summary:hover { background: var(--c-bg-2); }

.sipp-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sipp-faq-icon svg { width: 22px; height: 22px; }

.sipp-faq-q {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--c-brand-navy);
    line-height: 1.5;
}

.sipp-faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--c-text-4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
}
.sipp-faq-chevron svg { width: 14px; height: 14px; }
.sipp-faq-item[open] .sipp-faq-chevron {
    transform: rotate(180deg);
    color: var(--c-brand-blue);
}

.sipp-faq-a {
    padding: 0 26px 24px 70px;
    font-size: 14.5px;
    color: var(--c-text-3);
    line-height: 1.7;
}
.sipp-faq-a p { margin: 0; }
.sipp-faq-a p + p { margin-top: 10px; }

/* ============================================================================
   11. BANNER — full-bleed split assistance block
   ============================================================================ */
.sipp-banner {
    padding: 90px 0;
    background: #ffffff;
}

.sipp-banner-inner { max-width: 1280px; }

.sipp-banner-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0c1238 0%, #1a2168 50%, #1c1f5a 100%);
    position: relative;
}

.sipp-banner-img {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}
.sipp-banner-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(12, 18, 56, 0.4) 80%, rgba(12, 18, 56, 0.7) 100%);
}
.sipp-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sipp-banner-content {
    padding: 60px 60px 60px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.sipp-banner-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
}
.sipp-banner-pattern svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sipp-banner-title {
    font-size: clamp( 26px, 3vw, 38px );
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: left;
    position: relative;
    z-index: 1;
}

.sipp-banner-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.sipp-banner-content .sipp-cta {
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

/* ============================================================================
   12. CERTIFICATIONS — 4 trust badges
   ============================================================================ */
.sipp-certs {
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.sipp-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.sipp-cert {
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 34px 24px;
    text-align: center;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.sipp-cert:hover {
    transform: translateY(-4px);
    border-color: var(--c-brand-orange);
    box-shadow: 0 14px 40px -10px rgba(255, 176, 0, 0.25);
}

.sipp-cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 176, 0, 0.12) 0%, rgba(255, 176, 0, 0.02) 100%);
    border: 1px solid rgba(255, 176, 0, 0.25);
    color: var(--c-brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.sipp-cert-icon svg { width: 30px; height: 30px; }

.sipp-cert-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.sipp-cert-desc {
    font-size: 12.5px;
    color: var(--c-text-3);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================================
   13. RESPONSIVE
   ============================================================================ */
@media ( max-width: 1100px ) {
    .sipp-hero-inner { grid-template-columns: 1.2fr 1fr; gap: 40px; }
    .sipp-products-grid { grid-template-columns: repeat(2, 1fr); }
    .sipp-certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media ( max-width: 900px ) {
    .sipp-section-inner { padding: 0 24px; }
    .sipp-hero { padding: 60px 0 70px; }
    .sipp-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px;
        min-height: auto;
    }
    .sipp-hero-content { max-width: none; }
    .sipp-hero-visual { max-width: 380px; margin: 0 auto; order: 2; }
    .sipp-hero-content { order: 1; }
    .sipp-hero-ctas .sipp-cta { width: 100%; justify-content: center; }

    .sipp-pitch { padding: 60px 0; }
    .sipp-pitch-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 36px; }

    .sipp-configs { padding: 60px 0; }
    .sipp-configs-grid { grid-template-columns: 1fr; gap: 18px; }

    .sipp-stats { padding: 50px 0; }
    .sipp-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .sipp-stat + .sipp-stat::before { display: none; }
    .sipp-stat:nth-child(2n)::before { display: none; }

    .sipp-products { padding: 70px 0; }
    .sipp-products-grid { gap: 16px; }

    .sipp-why { padding: 70px 0; }
    .sipp-why-inner { grid-template-columns: 1fr; gap: 36px; }
    .sipp-why-img { aspect-ratio: 16 / 10; }

    .sipp-steps { padding: 70px 0; }
    .sipp-steps-grid { flex-direction: column; gap: 12px; }
    .sipp-step { width: 100%; }
    .sipp-step-arrow { transform: rotate(90deg); margin: 4px 0; }

    .sipp-faq { padding: 70px 0; }
    .sipp-faq-summary { padding: 18px 20px; gap: 12px; }
    .sipp-faq-q { font-size: 15px; }
    .sipp-faq-a { padding: 0 20px 22px 56px; }
    .sipp-faq-icon { width: 24px; height: 24px; }
    .sipp-faq-icon svg { width: 20px; height: 20px; }

    .sipp-banner { padding: 60px 0; }
    .sipp-banner-card { grid-template-columns: 1fr; }
    .sipp-banner-img { min-height: 220px; }
    .sipp-banner-content { padding: 36px 28px; }

    .sipp-certs { padding: 60px 0 70px; }
}

@media ( max-width: 600px ) {
    .sipp-section-inner { padding: 0 20px; }
    .sipp-hero { padding: 44px 0 56px; }
    .sipp-hero-inner { padding: 0 20px; }
    .sipp-hero-title { font-size: 36px; }
    .sipp-hero-visual { max-width: 280px; }

    .sipp-pitch-inner { padding: 0 20px; }
    .sipp-pitch-content p { font-size: 15px; }

    .sipp-config-card { padding: 28px 22px; }

    .sipp-stats-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .sipp-stat-value { font-size: 32px; }

    .sipp-products-grid { grid-template-columns: 1fr 1fr; }
    .sipp-product-card-img { padding: 18px; }
    .sipp-product-card-body { padding: 18px 18px 20px; }
    .sipp-product-card-title { font-size: 18px; }
    .sipp-product-card-text { font-size: 12.5px; }

    .sipp-why-feat { padding: 16px 18px; gap: 14px; }
    .sipp-why-feat-icon { width: 40px; height: 40px; }
    .sipp-why-feat-icon svg { width: 20px; height: 20px; }
    .sipp-why-feat-text { font-size: 14px; }

    .sipp-step { padding: 24px 20px; }

    .sipp-banner-content { padding: 28px 22px; }
    .sipp-banner-title { font-size: 22px; }
    .sipp-banner-text { font-size: 14.5px; }

    .sipp-certs-grid { gap: 14px; }
    .sipp-cert { padding: 24px 16px; }
}

/* ============================================================================
   14. ACCESSIBILITY — reduced motion
   ============================================================================ */
@media ( prefers-reduced-motion: reduce ) {
    .sipp-home *,
    .sipp-home *::before,
    .sipp-home *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .sipp-hero-img img { animation: none; }
    .sipp-hero-eyebrow-dot { animation: none; }
}

/* ============================================================================
   ============================================================================
   v2.1.0 — MULTI-PAGE EXTENSIONS
   14 new section types: intro, story, timeline, engagements, values, recruit,
   doc_sections, tools, how, video_tabs, test_cards, shortcode_zone,
   partners_grid, contact_cards
   ============================================================================
   ============================================================================ */

/* ============================================================================
   INTRO — centered text block (no image)
   ============================================================================ */
.sipp-intro {
    padding: 70px 0;
    background: #ffffff;
}
.sipp-intro-inner {
    max-width: 820px;
    text-align: center;
}
.sipp-intro-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-brand-navy);
    margin: 0 0 18px;
    line-height: 1.5;
}
.sipp-intro-p {
    font-size: 16px;
    color: var(--c-text-3);
    line-height: 1.7;
    margin: 0 0 14px;
}
.sipp-intro-p:last-child { margin-bottom: 0; }

/* ============================================================================
   STORY — long-form storytelling with optional aside image
   ============================================================================ */
.sipp-story {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.sipp-story-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.sipp-story-inner:has(.sipp-story-aside:empty),
.sipp-story-inner:not(:has(.sipp-story-aside)) {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}
.sipp-story-content .sipp-section-title {
    text-align: left;
    margin-bottom: 24px;
    font-size: clamp( 28px, 3.4vw, 42px );
}
.sipp-story-content p {
    font-size: 16px;
    color: var(--c-text-2);
    line-height: 1.7;
    margin: 0 0 18px;
}
.sipp-story-aside {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.sipp-story-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================
   TIMELINE — vertical chronology with dots and connecting line
   ============================================================================ */
.sipp-timeline {
    padding: 110px 0;
    background: #ffffff;
}
.sipp-timeline-list {
    position: relative;
    list-style: none;
    padding: 48px 0 0 0;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.sipp-timeline-list::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-brand-blue) 0%, var(--c-brand-orange) 100%);
    border-radius: 2px;
    opacity: 0.35;
}
.sipp-timeline-item {
    position: relative;
    padding: 16px 0 36px 80px;
    opacity: 0;
    animation: sippTLin 0.6s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
}
@keyframes sippTLin {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
.sipp-timeline-dot {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--c-brand-blue);
    box-shadow: 0 4px 14px -2px rgba(4, 56, 199, 0.4);
}
.sipp-timeline-item:nth-child(even) .sipp-timeline-dot {
    border-color: var(--c-brand-orange);
    box-shadow: 0 4px 14px -2px rgba(255, 176, 0, 0.4);
}
.sipp-timeline-date {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: var(--c-brand-navy);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.sipp-timeline-label {
    display: block;
    font-size: 15px;
    color: var(--c-text-3);
    line-height: 1.5;
}

/* ============================================================================
   ENGAGEMENTS — list of paragraphs with decorative "N" mark
   ============================================================================ */
.sipp-engagements {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}
.sipp-engagements-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
    margin-top: 40px;
}
.sipp-engagements-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}
.sipp-engagements-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sipp-engagements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sipp-engagement {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.sipp-engagement-mark {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Inter', serif;
    box-shadow: 0 8px 22px -6px rgba(4, 56, 199, 0.45);
    line-height: 1;
}
.sipp-engagement-text {
    font-size: 15.5px;
    color: var(--c-text-2);
    line-height: 1.65;
    padding-top: 12px;
}
.sipp-engagement-bold {
    color: var(--c-brand-navy);
    font-weight: 700;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

/* ============================================================================
   VALUES — 4 cards with circle icons (À propos)
   ============================================================================ */
.sipp-values {
    padding: 110px 0;
    background: #ffffff;
}
.sipp-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.sipp-value {
    text-align: center;
    padding: 32px 22px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    transition: all 0.32s var(--ease);
}
.sipp-value:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
}
.sipp-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(4, 56, 199, 0.12), rgba(4, 56, 199, 0.02));
    border: 1px solid rgba(4, 56, 199, 0.20);
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.sipp-value-icon svg { width: 30px; height: 30px; }
.sipp-value-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.sipp-value-text {
    font-size: 13.5px;
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   RECRUIT — double CTA card with image background (À propos)
   ============================================================================ */
.sipp-recruit {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.sipp-recruit-grid {
    display: grid;
    gap: 22px;
}
.sipp-recruit-grid--1 { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.sipp-recruit-grid--2 { grid-template-columns: 1fr 1fr; }
.sipp-recruit-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sipp-recruit-card {
    padding: 56px 44px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, #0c1238 0%, #1a2168 50%, #1c1f5a 100%);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.32s var(--ease);
    box-shadow: var(--shadow-lg);
    min-height: 280px;
    justify-content: center;
}
.sipp-recruit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px -28px rgba(28, 31, 90, 0.4);
}
.sipp-recruit-title {
    font-size: clamp( 22px, 2.4vw, 28px );
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}
.sipp-recruit-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* ============================================================================
   DOC_SECTIONS — premium download center (Téléchargement)
   ============================================================================ */
.sipp-docs {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    scroll-margin-top: 24px;
}

.sipp-docs-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 4px 12px;
    background: rgba(4, 56, 199, 0.08);
    border: 1px solid rgba(4, 56, 199, 0.18);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--c-brand-blue);
    letter-spacing: 0;
}
.sipp-docs-count strong {
    font-weight: 800;
    font-size: 13px;
}

/* Sticky category navigation */
.sipp-docs-nav {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    margin: 36px auto 56px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}
.sipp-docs-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-brand-navy);
    text-decoration: none !important;
    transition: all 0.22s var(--ease);
    white-space: nowrap;
}
.sipp-docs-nav-pill:hover {
    background: var(--c-brand-blue);
    border-color: var(--c-brand-blue);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}
.sipp-docs-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    background: var(--c-bg-3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: var(--c-brand-navy);
    transition: all 0.22s var(--ease);
}
.sipp-docs-nav-pill:hover .sipp-docs-nav-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* Doc groups */
.sipp-doc-group {
    margin-bottom: 56px;
    padding-top: 32px;
    scroll-margin-top: 96px;
}
.sipp-doc-group:last-child { margin-bottom: 0; }

.sipp-doc-group-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp( 20px, 2.2vw, 26px );
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 24px;
    letter-spacing: -0.015em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-brand-orange);
}
.sipp-doc-group-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 9px;
    background: var(--c-brand-orange);
    color: var(--c-brand-navy);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.sipp-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.sipp-doc-item { margin: 0; }

.sipp-doc-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    text-decoration: none !important;
    color: var(--c-text-2);
    transition: all 0.24s var(--ease);
    position: relative;
    overflow: hidden;
}
.sipp-doc-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 56, 199, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}
.sipp-doc-link:hover {
    border-color: var(--c-brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.sipp-doc-link:hover::before { opacity: 1; }

.sipp-doc-icon {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4ff 100%);
    border: 1px solid rgba(4, 56, 199, 0.18);
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px -2px rgba(28, 31, 90, 0.12);
}
.sipp-doc-icon svg { width: 20px; height: 20px; margin-top: -8px; }
.sipp-doc-ext {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--c-brand-orange);
    line-height: 1;
}

.sipp-doc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sipp-doc-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-brand-navy);
    line-height: 1.4;
}
.sipp-doc-meta {
    font-size: 11.5px;
    color: var(--c-text-4);
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.24s var(--ease);
}
.sipp-doc-link:hover .sipp-doc-meta { color: var(--c-brand-blue); }

.sipp-doc-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-bg-3);
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s var(--ease);
}
.sipp-doc-arrow svg { width: 14px; height: 14px; transition: transform 0.28s var(--ease); }
.sipp-doc-link:hover .sipp-doc-arrow {
    background: var(--c-brand-blue);
    color: #ffffff;
}
.sipp-doc-link:hover .sipp-doc-arrow svg {
    transform: translateY(2px);
}

/* ============================================================================
   TOOLS — 3 tool cards with badges (Téléchargement, etc.)
   ============================================================================ */
.sipp-tools {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}
.sipp-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.sipp-tool-card {
    position: relative;
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.32s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.sipp-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 56, 199, 0.2);
}
.sipp-tool-badge {
    position: absolute;
    top: -10px;
    right: 18px;
    background: var(--c-brand-orange);
    color: var(--c-brand-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px -4px rgba(255, 176, 0, 0.5);
}
.sipp-tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}
.sipp-tool-icon svg { width: 28px; height: 28px; }
.sipp-tool-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.015em;
}
.sipp-tool-cta {
    margin-top: auto;
    padding: 12px 22px;
    font-size: 13px;
}

/* ============================================================================
   HOW — 3 step cards with number + icon (Academy)
   ============================================================================ */
.sipp-how {
    padding: 110px 0;
    background: #ffffff;
}
.sipp-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}
.sipp-how-card {
    position: relative;
    padding: 40px 32px 36px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    text-align: center;
}
.sipp-how-card:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
}
.sipp-how-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(28, 31, 90, 0.16);
    letter-spacing: 0.08em;
}
.sipp-how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-blue);
}
.sipp-how-icon svg { width: 30px; height: 30px; }
.sipp-how-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.sipp-how-text {
    font-size: 14px;
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   VIDEO_TABS — tabbed YouTube embeds (Academy)
   ============================================================================ */
.sipp-videos {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.sipp-videos-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 6px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.sipp-videos-tab-btn {
    padding: 10px 22px;
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text-3);
    cursor: pointer;
    transition: all 0.22s var(--ease);
}
.sipp-videos-tab-btn:hover { color: var(--c-brand-navy); }
.sipp-videos-tab-btn.is-active {
    background: var(--c-brand-blue);
    color: #ffffff;
    box-shadow: var(--shadow-blue);
}
.sipp-videos-panel { animation: sippFadeIn 0.4s var(--ease); }
@keyframes sippFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sipp-videos-embed {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.sipp-videos-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sipp-videos-desc {
    max-width: 720px;
    margin: 18px auto 0;
    text-align: center;
    color: var(--c-text-3);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ============================================================================
   TEST_CARDS — 3 certification test cards on dark background (Academy)
   ============================================================================ */
.sipp-tests {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(255, 176, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 20% 70%, rgba(4, 56, 199, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #0c1238 0%, #1a2168 50%, #1c1f5a 100%);
}
.sipp-tests-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
    margin: -8px auto 40px;
}
.sipp-tests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.sipp-test-card {
    position: relative;
    padding: 36px 32px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
    color: #ffffff;
}
.sipp-test-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}
.sipp-test-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.08em;
}
.sipp-test-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.sipp-test-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0 0 16px;
}
.sipp-test-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-brand-orange);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 22px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sipp-test-duration svg { width: 14px; height: 14px; }
.sipp-test-cta {
    padding: 11px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
}

/* ============================================================================
   SHORTCODE_ZONE — placeholder for 3rd-party shortcode/iframe
   ============================================================================ */
.sipp-zone {
    padding: 70px 0;
    background: #ffffff;
}
.sipp-zone-inner {
    max-width: 960px;
}
.sipp-zone-content {
    margin-top: 24px;
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}

/* Raw / full-width variant — for tools that have their own complete design
   (e.g. the ISY-BOX calculateur). No box, no padding, more breathing room. */
.sipp-zone-content--raw {
    margin-top: 24px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.sipp-zone--raw .sipp-zone-inner {
    max-width: 1180px;
}
.sipp-zone-content iframe {
    width: 100%;
    border: 0;
    border-radius: var(--r-md);
}
.sipp-zone-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--c-text-4);
}
.sipp-zone-empty code {
    background: var(--c-bg-3);
    color: var(--c-brand-blue);
    padding: 2px 8px;
    border-radius: 5px;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 13px;
}

/* ============================================================================
   PARTNERS_GRID — logo grid by category (Distributeurs)
   ============================================================================ */
.sipp-partners {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.sipp-partners-group {
    margin-bottom: 48px;
}
.sipp-partners-group:last-child { margin-bottom: 0; }
.sipp-partners-group-title {
    font-size: clamp( 18px, 2vw, 22px );
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 0 0 24px;
    text-align: center;
    letter-spacing: -0.01em;
}
.sipp-partners-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}
.sipp-partner {
    margin: 0;
    padding: 28px 22px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    min-height: 100px;
}
.sipp-partner:hover {
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.sipp-partner a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}
.sipp-partner img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s var(--ease);
}
.sipp-partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================================================
   CONTACT_CARDS — 4 info cards (Contact)
   ============================================================================ */
.sipp-contactcards {
    padding: 90px 0;
    background: #ffffff;
}
.sipp-contactcards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.sipp-contactcard {
    padding: 36px 28px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.32s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sipp-contactcard:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 56, 199, 0.20);
    box-shadow: var(--shadow-md);
}
.sipp-contactcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(4, 56, 199, 0.10), rgba(4, 56, 199, 0.02));
    border: 1px solid rgba(4, 56, 199, 0.15);
    color: var(--c-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sipp-contactcard-icon svg { width: 28px; height: 28px; }
.sipp-contactcard-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-brand-navy);
    margin: 4px 0 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.sipp-contactcard-lines p {
    font-size: 13.5px;
    color: var(--c-text-3);
    line-height: 1.5;
    margin: 0 0 4px;
}
.sipp-contactcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    color: var(--c-brand-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: gap 0.24s var(--ease);
}
.sipp-contactcard-cta svg { width: 13px; height: 13px; transition: transform 0.24s var(--ease); }
.sipp-contactcard-cta:hover { gap: 10px; }
.sipp-contactcard-cta:hover svg { transform: translateX(2px); }

/* ============================================================================
   RESPONSIVE — v2.1.0 sections
   ============================================================================ */
@media ( max-width: 1100px ) {
    .sipp-values-grid { grid-template-columns: repeat(2, 1fr); }
    .sipp-tools-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .sipp-tests-grid { grid-template-columns: 1fr; gap: 16px; }
    .sipp-how-grid { grid-template-columns: 1fr; gap: 16px; }
    .sipp-recruit-grid--2 { grid-template-columns: 1fr; }
    .sipp-recruit-grid--3 { grid-template-columns: 1fr; }
}

@media ( max-width: 900px ) {
    .sipp-intro { padding: 50px 0; }
    .sipp-story { padding: 60px 0; }
    .sipp-story-inner { grid-template-columns: 1fr; gap: 32px; }
    .sipp-story-aside { aspect-ratio: 16 / 10; max-width: 480px; margin: 0 auto; }

    .sipp-timeline { padding: 70px 0; }
    .sipp-timeline-list::before { left: 20px; }
    .sipp-timeline-item { padding-left: 64px; padding-bottom: 28px; }
    .sipp-timeline-dot { left: 10px; width: 20px; height: 20px; }
    .sipp-timeline-date { font-size: 18px; }

    .sipp-engagements { padding: 60px 0; }
    .sipp-engagements-inner { grid-template-columns: 1fr; gap: 32px; }
    .sipp-engagements-img { aspect-ratio: 16 / 10; max-width: 480px; margin: 0 auto; order: -1; }
    .sipp-engagement-mark { width: 40px; height: 40px; font-size: 16px; }
    .sipp-engagement-text { padding-top: 8px; font-size: 14.5px; }

    .sipp-values { padding: 60px 0; }

    .sipp-recruit { padding: 60px 0; }
    .sipp-recruit-card { padding: 40px 28px; min-height: 220px; }

    .sipp-docs { padding: 60px 0 70px; }
    .sipp-docs-nav {
        margin: 24px -8px 40px;
        padding: 10px;
        border-radius: var(--r-md);
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .sipp-docs-nav::-webkit-scrollbar { display: none; }
    .sipp-docs-nav-pill { padding: 7px 14px; font-size: 12.5px; flex-shrink: 0; }
    .sipp-doc-list { grid-template-columns: 1fr; }
    .sipp-doc-link { padding: 14px 14px; gap: 12px; }
    .sipp-doc-icon { width: 38px; height: 46px; }
    .sipp-doc-icon svg { width: 17px; height: 17px; }
    .sipp-doc-ext { font-size: 7.5px; }
    .sipp-doc-title { font-size: 13.5px; }
    .sipp-doc-meta { font-size: 11px; }
    .sipp-doc-arrow { width: 28px; height: 28px; }
    .sipp-doc-group { margin-bottom: 40px; padding-top: 20px; }
    .sipp-doc-group-title { font-size: 19px; margin-bottom: 18px; }

    .sipp-tools { padding: 60px 0; }
    .sipp-how { padding: 60px 0; }

    .sipp-videos { padding: 60px 0; }
    .sipp-videos-tab-buttons { width: 100%; flex-wrap: wrap; }
    .sipp-videos-tab-btn { padding: 8px 16px; font-size: 13px; }

    .sipp-tests { padding: 70px 0; }
    .sipp-tests-intro { font-size: 14.5px; }

    .sipp-zone { padding: 50px 0; }
    .sipp-zone-content { padding: 20px; }

    .sipp-partners { padding: 60px 0; }
    .sipp-partners-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .sipp-partner { padding: 20px 16px; min-height: 80px; }
    .sipp-partner img { max-height: 48px; }

    .sipp-contactcards { padding: 60px 0; }
}

@media ( max-width: 600px ) {
    .sipp-values-grid { grid-template-columns: 1fr; gap: 14px; }
    .sipp-tools-grid { gap: 16px; }
    .sipp-doc-link { gap: 10px; padding: 12px 14px; }
    .sipp-doc-arrow { width: 24px; height: 24px; }
}

/* ============================================================================
   SHOWCASE — alternating image/text feature rows (Configurateur "Prise en main")
   ============================================================================ */
.sipp-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}
.sipp-showcase-rows {
    display: flex;
    flex-direction: column;
    gap: 72px;
    margin-top: 56px;
}
.sipp-showcase-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.sipp-showcase-row--alt {
    grid-template-columns: 1fr 1.15fr;
}
.sipp-showcase-row--alt .sipp-showcase-visual { order: 2; }
.sipp-showcase-row--alt .sipp-showcase-content { order: 1; }

.sipp-showcase-visual {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
    background: #fff;
}
.sipp-showcase-visual-glow {
    position: absolute;
    inset: -20% 30% 40% -10%;
    background: radial-gradient(circle, rgba(4, 56, 199, 0.16) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}
.sipp-showcase-row--alt .sipp-showcase-visual-glow {
    inset: -20% -10% 40% 30%;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.16) 0%, transparent 60%);
}
.sipp-showcase-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.sipp-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sipp-showcase-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-brand-blue) 0%, var(--c-brand-blue-2) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-blue);
}
.sipp-showcase-row--alt .sipp-showcase-num {
    background: linear-gradient(135deg, var(--c-brand-orange) 0%, #ff8a00 100%);
    box-shadow: 0 14px 40px -10px rgba(255, 176, 0, 0.45);
    color: var(--c-brand-navy);
}
.sipp-showcase-title {
    font-size: clamp( 24px, 2.8vw, 32px );
    font-weight: 800;
    color: var(--c-brand-navy);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.sipp-showcase-text {
    font-size: 16px;
    color: var(--c-text-3);
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}

@media ( max-width: 900px ) {
    .sipp-showcase { padding: 60px 0; }
    .sipp-showcase-rows { gap: 48px; }
    .sipp-showcase-row,
    .sipp-showcase-row--alt {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sipp-showcase-row--alt .sipp-showcase-visual { order: 0; }
    .sipp-showcase-row--alt .sipp-showcase-content { order: 0; }
    .sipp-showcase-num { width: 42px; height: 42px; font-size: 16px; }
    .sipp-showcase-text { font-size: 15px; max-width: none; }
}
