/*
 * SmartSite! — Thème DevXpert (digital blue)
 * À importer APRÈS framework/smartsite.css
 *
 * 1.  Design tokens (palette + polices)
 * 2.  Sélection de texte
 * 3.  Typographie (ligne décorative)
 * 4.  Navigation
 * 5.  Hero
 * 6.  Composants (cards, features, steps, box-highlight)
 * 7.  Boutons
 * 8.  Contact & formulaires
 * 9.  Footer
 * 10. Hero sombre
 * 11. Corrections & ajustements
 * 12. FAQ
 * 13. Galerie — placeholder
 * 14. FeedForms — feedback & états
 * 15. Parcours étapes — responsive + connecteurs animés
 */


/* ═══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS — Palette SmartSite! (digital blue)
═══════════════════════════════════════════════════════════════════════════ */
:root {
    /* Couleurs de marque */
    --s2-color-primary:       #1a365d;
    --s2-color-primary-light: #ebf4ff;
    --s2-color-primary-dark:  #0f1f38;
    --s2-color-secondary:     #4a7ab5;
    --s2-color-accent:        #06b6d4;
    --s2-color-bg:            #ffffff;
    --s2-color-bg-alt:        #f0f7ff;
    --s2-color-text:          #2c3e50;
    --s2-color-text-muted:    #545b62;
    --s2-color-border:        rgba(0, 0, 0, 0.08);

    /* Polices */
    --s2-font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --s2-font-body:  'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Hero */
    --s2-hero-bg-from: #0f2b46;
    --s2-hero-bg-to:   #1a4a6e;

    /* Section padding */
    --s2-section-py: 6rem;

    /* Nav */
    --s2-nav-bg: #f0f7ff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. SÉLECTION DE TEXTE
═══════════════════════════════════════════════════════════════════════════ */
::selection {
    background-color: var(--s2-color-primary-light);
    color: var(--s2-color-primary-dark);
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHIE — Ligne décorative sur les titres de section
   La ligne suit la dernière ligne du titre grâce à display:inline sur h2.
   overflow:hidden sur le wrapper coupe la ligne (100vw) au bord du container.
═══════════════════════════════════════════════════════════════════════════ */
.s2-section-title {
    overflow: hidden;
}
.s2-section-title h2 {
    display: inline;
}
.s2-section-title h2::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 100vw;
    height: 2px;
    background: linear-gradient(to right, var(--s2-color-primary), transparent);
    margin-left: 1.5rem;
    margin-bottom: 0.1em;
}

.s2-section--white + .s2-section--white {
    position: relative;
}

.s2-section--white + .s2-section--white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 72rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(26, 54, 93, 0.04) 10%, rgba(26, 54, 93, 0.14) 50%, rgba(26, 54, 93, 0.04) 90%, transparent 100%);
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. NAVIGATION — Polish visuel
═══════════════════════════════════════════════════════════════════════════ */

/* Fond léger teinté */
.s2-nav {
    background-color: rgba(240, 247, 255, 0.88);
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 8px 28px rgba(15, 31, 56, 0.05);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}
.s2-nav .s2-brand > img:first-child {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
}
.s2-nav .s2-brand > img:last-child {
    width: auto;
    height: 18px;
    display: block;
}
.s2-nav--overlay {
    background-color: transparent;
    border-bottom-color: transparent;
}

/* Liens : border-bottom au survol */
.s2-nav-links > li > a {
    border-bottom: 2px solid transparent;
    transition: color 0.22s ease, border-color 0.22s ease;
}
.s2-nav-links > li > a:hover {
    border-bottom-color: var(--s2-color-primary);
}

/* CTA : ombre colorée + transform */
.s2-nav-cta > a {
    box-shadow: 0 2px 8px rgba(35, 78, 65, 0.2);
}
.s2-nav-cta > a:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(35, 78, 65, 0.25) !important;
}

/* Dropdown : translateX au survol */
.s2-dropdown-menu li > a:hover {
    transform: translateX(4px);
}

/* Mobile : fond sur hover des liens */
@media (max-width: 991px) {
    .s2-nav-links > li > a {
        border-bottom: none;
    }
    .s2-nav-links > li > a:hover {
        border-bottom: none;
    }
    .s2-dropdown-menu li > a:hover {
        transform: none;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. HERO — Dégradé et typographie spécifique
═══════════════════════════════════════════════════════════════════════════ */
.s2-hero {
    background: linear-gradient(135deg, var(--s2-hero-bg-from) 0%, var(--s2-hero-bg-to) 100%);
    min-height: 62vh;
    position: relative;
    overflow: hidden;
}

.s2-hero::before,
.s2-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.s2-hero::before {
    top: -8rem;
    right: -8rem;
    width: min(34rem, 65vw);
    height: min(34rem, 65vw);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 24%, transparent 70%);
    filter: blur(10px);
}

.s2-hero::after {
    left: -10rem;
    bottom: -12rem;
    width: min(42rem, 78vw);
    height: min(42rem, 78vw);
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.08) 26%, transparent 70%);
    filter: blur(12px);
}

.s2-hero-title {
    font-family: var(--s2-font-sans);
    font-weight: 700;
    letter-spacing: normal;
}

/* Animations hero (éléments cachés par défaut, révélés par les classes d'animation) */
.s2-hero .s2-tagline      { opacity: 0; }
.s2-hero .theme-hero-kicker { opacity: 0; }
.s2-hero .s2-hero-title   { opacity: 0; }
.s2-hero .s2-hero-subtitle{ opacity: 0; }
.s2-hero .s2-hero-actions { opacity: 0; }

.s2-animate-fade-in-up {
    animation-fill-mode: both;
}

.theme-hero-kicker {
    display: inline-block;
    max-width: min(100%, 32rem);
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.theme-hero-title-secondary {
    display: block;
    margin-top: 0.8rem;
    font-size: clamp(1.25rem, 3.6vw, 2rem);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.theme-hero-underline {
    display: inline-block;
    padding-bottom: 0.16em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2 11 C 22 17, 78 17, 98 11' fill='none' stroke='%2306b6d4' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 0.45em;
    background-position: 0 100%;
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. COMPOSANTS — Effets hover & Polish visuel
═══════════════════════════════════════════════════════════════════════════ */

/* Cards : hover lift */
.s2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 31, 56, 0.08);
}

/* Features : hover lift */
.s2-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 31, 56, 0.08);
}

/* Icônes premium partagées */
.s2-feature-icon,
.smartforms-benefit-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--s2-color-primary);
    background: linear-gradient(145deg, #ffffff 0%, var(--s2-color-primary-light) 100%);
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 24px rgba(15, 31, 56, 0.06);
}
.s2-feature-icon {
    border-radius: 1.15rem;
    width: 3.5rem;
    height: 3.5rem;
}
.s2-feature:hover .s2-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Icônes SVG de la charte */
.s2-icon-mark,
.smartforms-benefit-icon.s2-icon-mark,
.s2-feature-icon.s2-icon-mark {
    font-size: 0;
}

.s2-icon-mark::before,
.smartforms-benefit-icon.s2-icon-mark::before,
.s2-feature-icon.s2-icon-mark::before {
    content: '';
    display: block;
    width: var(--s2-icon-size, 1.25rem);
    height: var(--s2-icon-size, 1.25rem);
    background: currentColor;
    -webkit-mask-image: var(--s2-icon-mask);
    mask-image: var(--s2-icon-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.s2-icon-mark--sm {
    width: 2.5rem;
    height: 2.5rem;
    --s2-icon-size: 1rem;
}

.s2-icon-mark--md {
    width: 3.5rem;
    height: 3.5rem;
    --s2-icon-size: 1.15rem;
}

.s2-icon-mark--lg {
    width: 4rem;
    height: 4rem;
    --s2-icon-size: 1.3rem;
}

.s2-icon-mark--xl {
    width: 4.5rem;
    height: 4.5rem;
    --s2-icon-size: 1.45rem;
}

.s2-icon--layers { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4 4 8.5 12 13l8-4.5L12 4Z'/%3E%3Cpath d='M4 12.2 12 16.7 20 12.2'/%3E%3Cpath d='M4 16.2 12 20.7 20 16.2'/%3E%3C/svg%3E"); }
.s2-icon--gear { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3.1'/%3E%3Cpath d='M12 2.8v2.1M12 19.1v2.1M4.9 4.9l1.5 1.5M17.6 17.6l1.5 1.5M2.8 12h2.1M19.1 12h2.1M4.9 19.1l1.5-1.5M17.6 6.4l1.5-1.5'/%3E%3C/svg%3E"); }
.s2-icon--shield { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 18.2 5.3v5.2c0 4.5-2.9 7.8-6.2 9.6-3.3-1.8-6.2-5.1-6.2-9.6V5.3L12 3Z'/%3E%3Cpath d='m9.2 12.1 2 2.1 3.7-4.3'/%3E%3C/svg%3E"); }
.s2-icon--spark { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.2 2.8 5.5 13h5l-1.1 8.2L18 10h-5.2l.4-7.2Z'/%3E%3C/svg%3E"); }
.s2-icon--building { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21h14'/%3E%3Cpath d='M7 21V6.9L12 4l5 2.9V21'/%3E%3Cpath d='M9 9h2M13 9h2M9 12.5h2M13 12.5h2M9 16h2M13 16h2'/%3E%3C/svg%3E"); }
.s2-icon--user { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3'/%3E%3Cpath d='M5.5 20.1c0-3.6 3-6.6 6.5-6.6s6.5 3 6.5 6.6'/%3E%3C/svg%3E"); }
.s2-icon--users { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='2.4'/%3E%3Ccircle cx='16.5' cy='9' r='2'/%3E%3Cpath d='M3.8 19.2c0-2.7 2.1-4.8 4.8-4.8h1.2'/%3E%3Cpath d='M12.3 19.2c0-2.7 2.1-4.8 4.8-4.8h1.2'/%3E%3C/svg%3E"); }
.s2-icon--pin { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.1 6-11.1A6 6 0 1 0 6 9.9C6 15.9 12 21 12 21Z'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3C/svg%3E"); }
.s2-icon--mobile { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7.7' y='2.8' width='8.6' height='18.4' rx='2.2'/%3E%3Cpath d='M11.2 18h1.6'/%3E%3C/svg%3E"); }
.s2-icon--leaf { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12'/%3E%3C/svg%3E"); }
.s2-icon--palette { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4a8 8 0 1 0 0 16h3.1a1.7 1.7 0 0 0 0-3.4h-1.1a1.1 1.1 0 0 1 0-2.2H16a1.6 1.6 0 0 0 0-3.2h-1A3.1 3.1 0 0 1 12 8.5 2 2 0 0 1 12 4Z'/%3E%3Ccircle cx='8.4' cy='10.2' r='.8'/%3E%3Ccircle cx='10' cy='14' r='.8'/%3E%3Ccircle cx='12.9' cy='11.2' r='.8'/%3E%3C/svg%3E"); }
.s2-icon--pencil { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17.4 15.8 5.6a1.5 1.5 0 0 1 2.1 0l1.4 1.4a1.5 1.5 0 0 1 0 2.1L7.5 21H4z'/%3E%3Cpath d='M13.8 7.6 16.4 10.2'/%3E%3Cpath d='M4 21h5.2'/%3E%3Cpath d='M4 21c3-2 5-2 7 0s4 2 6 0'/%3E%3C/svg%3E"); }
.s2-icon--pen { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l1-4.7 10.1-10.1 3.6 3.6L8.6 19 4 20Z'/%3E%3Cpath d='M14.2 5.2l3.6 3.6'/%3E%3C/svg%3E"); }
.s2-icon--paragraph { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.4 6h13.2'/%3E%3Cpath d='M5.4 10.8h13.2'/%3E%3Cpath d='M5.4 15.6h10.2'/%3E%3Cpath d='M5.4 20.4h13.2'/%3E%3C/svg%3E"); }
.s2-icon--chart { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5h16'/%3E%3Crect x='6' y='11' width='2.6' height='6' rx='1'/%3E%3Crect x='10.7' y='7.5' width='2.6' height='9.5' rx='1'/%3E%3Crect x='15.4' y='4.7' width='2.6' height='12.3' rx='1'/%3E%3C/svg%3E"); }
.s2-icon--message { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.8h16v9.8H9.2L4 19v-3.4z'/%3E%3C/svg%3E"); }
.s2-icon--connect { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7' cy='12' r='2.1'/%3E%3Ccircle cx='17' cy='7' r='2.1'/%3E%3Ccircle cx='17' cy='17' r='2.1'/%3E%3Cpath d='M8.8 11.1 15.2 8.5M8.8 12.9 15.2 15.5'/%3E%3C/svg%3E"); }
.s2-icon--document { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3.8h6l4 4V20H7z'/%3E%3Cpath d='M13 3.8v4h4'/%3E%3Cpath d='M9 11h6M9 14h6'/%3E%3C/svg%3E"); }
.s2-icon--calendar { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='3'/%3E%3Cpath d='M8 3.5v3M16 3.5v3M4 9h16'/%3E%3C/svg%3E"); }
.s2-icon--idea { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.3 15.8c-.8-.8-1.3-2-1.3-3.3A4 4 0 0 1 12 8a4 4 0 0 1 4 4.5c0 1.2-.5 2.3-1.3 3.1'/%3E%3Cpath d='M10.1 19h3.8M11.1 21h1.8'/%3E%3C/svg%3E"); }
.s2-icon--sync { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 4v6h-6'/%3E%3Cpath d='M1 20v-6h6'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10'/%3E%3Cpath d='M20.49 15a9 9 0 0 1-14.85 3.36L1 14'/%3E%3C/svg%3E"); }
.s2-icon--key { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 9.9-1'/%3E%3C/svg%3E"); }
.s2-icon--check { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7.2'/%3E%3Cpath d='m9.2 12.2 1.9 2 3.8-4.4'/%3E%3C/svg%3E"); }
.s2-icon--globe { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M12 4c2.2 2.2 3.4 4.9 3.4 8s-1.2 5.8-3.4 8c-2.2-2.2-3.4-4.9-3.4-8S9.8 6.2 12 4Z'/%3E%3C/svg%3E"); }
.s2-icon--screen { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5.3' width='16' height='11' rx='2'/%3E%3Cpath d='M9 19h6'/%3E%3C/svg%3E"); }
.s2-icon--feedback { --s2-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.8h16v9.5H9.5L4.5 20V15.3H4z'/%3E%3Cpath d='m12 8.6.8 1.6 1.8.3-1.3 1.2.3 1.8-1.6-.8-1.6.8.3-1.8-1.3-1.2 1.8-.3z'/%3E%3C/svg%3E"); }

/* Icône grande : fond blanc + ombre */
.s2-feature-icon--lg {
    background-color: var(--s2-color-bg);
    box-shadow: var(--s2-shadow);
}

/* Step icons : fond blanc + ombre */
.s2-step-icon {
    border-radius: 50%;
    background: var(--s2-color-bg);
    box-shadow: var(--s2-shadow);
    color: var(--s2-color-primary);
}

/* Box highlight : dégradé */
.s2-box-highlight {
    background: linear-gradient(135deg, rgba(235, 244, 255, 0.96) 0%, rgba(245, 250, 255, 0.98) 100%);
    border-color: rgba(26, 54, 93, 0.08);
    box-shadow: 0 12px 30px rgba(15, 31, 56, 0.06);
    position: relative;
    overflow: hidden;
}

.s2-box-highlight::before,
.s2-callout::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.3rem;
    background: linear-gradient(180deg, var(--s2-color-accent), var(--s2-color-secondary));
}

.s2-callout {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(235, 244, 255, 0.95) 0%, rgba(250, 253, 255, 1) 100%);
    border-color: rgba(26, 54, 93, 0.08);
    box-shadow: 0 12px 28px rgba(15, 31, 56, 0.05);
}

.s2-update-mark {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(26, 54, 93, 0.12);
    background: linear-gradient(145deg, #ffffff 0%, var(--s2-color-primary-light) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 20px rgba(15, 31, 56, 0.06);
    color: var(--s2-color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.s2-update-mark span {
    display: block;
    line-height: 1;
}

.s2-ownership-panel {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1.2fr);
    gap: 1.75rem 2rem;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
    color: var(--s2-color-primary-dark);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-radius: 1.6rem;
    box-shadow: 0 18px 42px rgba(15, 31, 56, 0.12);
    overflow: hidden;
}

.s2-ownership-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.35rem;
    background: linear-gradient(90deg, var(--s2-color-accent), var(--s2-color-secondary));
}

.s2-ownership-seal {
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 54, 93, 0.14);
    background: linear-gradient(145deg, #ffffff 0%, var(--s2-color-primary-light) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 22px rgba(15, 31, 56, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--s2-color-secondary);
}

.s2-ownership-seal strong {
    display: block;
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--s2-color-primary-dark);
    text-transform: none;
}

.s2-ownership-seal span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
}

.s2-ownership-copy {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.s2-ownership-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.s2-ownership-title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.18;
    font-weight: 800;
    color: var(--s2-color-primary-dark);
}

.s2-ownership-text {
    margin: 0;
    color: var(--s2-color-text-muted);
}

.s2-ownership-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    margin: 0.15rem 0 0;
}

.s2-ownership-item {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.s2-ownership-item dt {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.s2-ownership-item dd {
    margin: 0.35rem 0 0;
    font-size: 1.03rem;
    font-weight: 700;
    color: var(--s2-color-primary-dark);
}

@media (max-width: 767px) {
    .s2-ownership-panel {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .s2-ownership-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .s2-ownership-list {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   6B. SECTIONS EDITORIALES SMARTSITE
═══════════════════════════════════════════════════════════════════════════ */
.s2-benefits-shell {
    display: block;
}

.s2-benefits-intro {
    padding: 1.9rem;
    background: linear-gradient(145deg, rgba(244, 249, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 1.4rem;
    box-shadow: 0 16px 34px rgba(15, 31, 56, 0.06);
}

.s2-benefits-kicker {
    margin: 0 0 0.9rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.s2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.s2-benefit-panel {
    padding: 1.4rem 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 1.2rem;
    box-shadow: 0 12px 26px rgba(15, 31, 56, 0.05);
}

.s2-benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.28rem 0.65rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: var(--s2-color-primary-light);
    color: var(--s2-color-secondary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.s2-benefit-panel h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    color: var(--s2-color-primary-dark);
}

.s2-benefit-panel p {
    margin: 0;
    color: var(--s2-color-text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.s2-benefits-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: center;
}

.s2-benefits-proof-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.s2-benefits-proof-points span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 10px 20px rgba(15, 31, 56, 0.04);
    color: var(--s2-color-primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.s2-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 1.6rem;
    align-items: start;
}

.s2-editorial-shell {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(245, 250, 255, 0.94) 0%, rgba(236, 245, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 1.65rem;
    box-shadow: 0 20px 42px rgba(15, 31, 56, 0.08);
    overflow: hidden;
}

.s2-editorial-shell::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--s2-color-secondary), var(--s2-color-accent));
}

.s2-editorial-copy {
    padding-right: 0.35rem;
}

.s2-editorial-kicker {
    margin: 0 0 0.85rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.s2-editorial-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.s2-editorial-proof span {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(15, 31, 56, 0.04);
    color: var(--s2-color-primary-dark);
    font-size: 0.86rem;
    font-weight: 600;
}

.s2-editorial-panel {
    padding: 1.9rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 1.45rem;
    box-shadow: 0 18px 36px rgba(15, 31, 56, 0.06);
}

.s2-editorial-label {
    margin: 0 0 1rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.s2-editorial-list {
    display: grid;
    gap: 0.55rem;
    counter-reset: editorial-step;
}

.s2-editorial-item {
    position: relative;
    padding: 1rem 0 1rem 3.1rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.s2-editorial-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.s2-editorial-item::before {
    counter-increment: editorial-step;
    content: counter(editorial-step, decimal-leading-zero);
    position: absolute;
    top: 0.95rem;
    left: 0;
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--s2-color-secondary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.s2-editorial-item:first-child::before {
    top: 0;
}

.s2-editorial-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
    color: var(--s2-color-primary-dark);
}

.s2-editorial-item p {
    margin: 0;
    color: var(--s2-color-text-muted);
    line-height: 1.7;
}

.s2-editorial-divider {
    position: relative;
    padding-top: 2.4rem;
}

.s2-editorial-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 18rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.2), transparent);
}

.s2-style-card {
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 16px 34px rgba(15, 31, 56, 0.06);
    background: rgba(255, 255, 255, 0.94);
}

.s2-style-card img {
    transition: transform 0.42s ease, filter 0.42s ease;
}

.s2-style-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.04);
}

.s2-style-card .s2-card-body {
    padding: 1.15rem 1.2rem 1.3rem;
}

.s2-offer-journey {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.s2-offer-journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1.2rem 1.25rem;
    background: linear-gradient(145deg, rgba(244, 249, 255, 0.88) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 1.2rem;
}

.s2-offer-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: var(--s2-color-primary-dark);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.s2-offer-step-title {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--s2-color-primary-dark);
}

.s2-offer-step-text {
    margin: 0;
    color: var(--s2-color-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.s2-site-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.s2-site-plan-card {
    --plan-surface-from: rgba(245, 250, 255, 0.98);
    --plan-surface-to: rgba(238, 246, 255, 0.98);
    --plan-border: rgba(26, 54, 93, 0.1);
    --plan-shadow: rgba(15, 31, 56, 0.07);
    --plan-accent: #2f6fa3;
    --plan-accent-strong: #1b4f78;
    --plan-badge-bg: rgba(255, 255, 255, 0.7);
    --plan-badge-border: rgba(47, 111, 163, 0.16);
    --plan-badge-color: #1b4f78;
    --plan-bullet: #38bdf8;
    --plan-button-shadow: rgba(27, 79, 120, 0.24);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2rem;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, var(--plan-surface-from) 0%, var(--plan-surface-to) 100%);
    border: 1px solid var(--plan-border);
    border-radius: 1.45rem;
    box-shadow: 0 18px 38px var(--plan-shadow);
}

.s2-site-plan-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--plan-accent), var(--plan-accent-strong));
}

.s2-site-plan-card > .s2-badge {
    align-self: flex-start;
    background: var(--plan-badge-bg);
    color: var(--plan-badge-color);
    border: 1px solid var(--plan-badge-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.s2-site-plan-card h3 {
    color: var(--plan-accent-strong);
}

.s2-site-plan-card--tier-1 {
    --plan-surface-from: rgba(242, 248, 255, 0.98);
    --plan-surface-to: rgba(228, 239, 252, 0.98);
    --plan-border: rgba(47, 111, 163, 0.16);
    --plan-shadow: rgba(27, 79, 120, 0.1);
    --plan-accent: #2f6fa3;
    --plan-accent-strong: #1b4f78;
    --plan-badge-border: rgba(47, 111, 163, 0.16);
    --plan-badge-color: #1b4f78;
    --plan-bullet: #38bdf8;
    --plan-button-shadow: rgba(27, 79, 120, 0.24);
}

.s2-site-plan-card--tier-2 {
    --plan-surface-from: rgba(239, 249, 246, 0.98);
    --plan-surface-to: rgba(222, 243, 235, 0.98);
    --plan-border: rgba(43, 125, 105, 0.16);
    --plan-shadow: rgba(30, 93, 79, 0.1);
    --plan-accent: #2b7d69;
    --plan-accent-strong: #1e5d4f;
    --plan-badge-border: rgba(43, 125, 105, 0.16);
    --plan-badge-color: #1e5d4f;
    --plan-bullet: #10b981;
    --plan-button-shadow: rgba(30, 93, 79, 0.22);
}

.s2-site-plan-card--tier-3 {
    --plan-surface-from: rgba(250, 246, 239, 0.98);
    --plan-surface-to: rgba(243, 233, 220, 0.98);
    --plan-border: rgba(154, 107, 47, 0.18);
    --plan-shadow: rgba(112, 73, 28, 0.1);
    --plan-accent: #9a6b2f;
    --plan-accent-strong: #70491c;
    --plan-badge-border: rgba(154, 107, 47, 0.18);
    --plan-badge-color: #70491c;
    --plan-bullet: #d4a24f;
    --plan-button-shadow: rgba(112, 73, 28, 0.2);
}

.s2-site-plan-price {
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.2rem 0.55rem;
    font-size: clamp(2.2rem, 4.3vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--plan-accent-strong);
}

.s2-site-plan-prefix {
    display: block;
    flex-basis: 100%;
    margin-bottom: 0.18rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--s2-color-text-muted);
}

.s2-site-plan-amount {
    display: inline-block;
    line-height: 1;
}

.s2-site-plan-currency {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    margin-left: 0.1rem;
    padding-bottom: 0.22rem;
    font-size: 0.82rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plan-accent);
}

.s2-site-plan-period {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
}

.s2-site-plan-summary {
    min-height: 4.8rem;
    margin: 0 0 1.2rem;
    color: var(--s2-color-text-muted);
}

.s2-site-plan-features {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1.1rem;
    padding: 0;
    flex: 1;
}

.s2-site-plan-features li {
    position: relative;
    padding-left: 1rem;
    line-height: 1.65;
    color: var(--s2-color-text);
}

.s2-site-plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--plan-bullet);
}

.s2-site-plan-meta {
    margin: 0 0 1rem;
    color: var(--s2-color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.s2-site-plan-action {
    margin-top: auto;
}

.s2-site-plan-card .s2-site-plan-action {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--plan-accent) 0%, var(--plan-accent-strong) 100%);
    box-shadow: 0 10px 22px var(--plan-button-shadow);
}

.s2-site-plan-card .s2-site-plan-action:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--plan-accent-strong) 0%, var(--plan-accent) 100%);
    box-shadow: 0 14px 28px var(--plan-button-shadow);
}

@media (max-width: 991px) {
    .s2-benefits-shell,
    .s2-benefits-proof-grid,
    .s2-editorial-layout,
    .s2-offer-journey,
    .s2-site-plan-grid {
        grid-template-columns: 1fr;
    }

    .s2-benefits-intro,
    .s2-editorial-shell,
    .s2-editorial-panel,
    .s2-site-plan-card {
        padding: 1.6rem;
    }

    .s2-editorial-copy {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .s2-benefits-grid,
    .s2-site-plan-grid--hosting {
        grid-template-columns: 1fr;
    }

    .s2-benefits-grid {
        grid-template-columns: 1fr;
    }

    .s2-site-plan-summary {
        min-height: 0;
    }

    .s2-editorial-item {
        padding-left: 0;
        padding-top: 3rem;
    }

    .s2-editorial-item:first-child {
        padding-top: 3rem;
    }

    .s2-editorial-item::before,
    .s2-editorial-item:first-child::before {
        top: 0;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. BOUTONS — Ombres colorées & hover transforms
═══════════════════════════════════════════════════════════════════════════ */
.s2-btn--primary {
    box-shadow: 0 4px 10px rgba(35, 78, 65, 0.2);
}
.s2-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(35, 78, 65, 0.25);
}

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


/* ═══════════════════════════════════════════════════════════════════════════
   8. CONTACT — Polish
═══════════════════════════════════════════════════════════════════════════ */
.s2-contact-info {
    background-color: transparent;
}
.s2-contact-form {
    background-color: transparent;
}

/* Focus fields */
.s2-input:focus,
.s2-textarea:focus,
.s2-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.12);
}

.s2-smartforms-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.s2-smartforms-story {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(245, 250, 255, 0.98) 0%, rgba(237, 246, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 1.55rem;
    box-shadow: 0 18px 38px rgba(15, 31, 56, 0.08);
    overflow: hidden;
}

.s2-smartforms-story::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.28rem;
    background: linear-gradient(90deg, var(--s2-color-accent), var(--s2-color-secondary));
}

.s2-smartforms-story h2 {
    margin-bottom: 1rem;
}

.s2-smartforms-proof {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.s2-smartforms-proof span {
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 24px rgba(15, 31, 56, 0.04);
    color: var(--s2-color-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════════════
   9. FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.s2-footer {
    background-color: var(--s2-color-primary-light);
}


/* ═══════════════════════════════════════════════════════════════════════════
   10. HERO SOMBRE
═══════════════════════════════════════════════════════════════════════════ */
.s2-hero { color: #fff; }
.s2-hero .s2-hero-title { color: #fff; }
.s2-hero .s2-hero-subtitle { color: rgba(255,255,255,0.85); }
.s2-hero .s2-tagline { color: rgba(255,255,255,0.7); }
.s2-hero .theme-hero-kicker { color: rgba(255,255,255,0.78); }
.s2-hero .s2-btn--outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.s2-hero .s2-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }


/* ═══════════════════════════════════════════════════════════════════════════
   11. CORRECTIONS & AJUSTEMENTS
═══════════════════════════════════════════════════════════════════════════ */

/* Nav CTA : bouton compact, légèrement décalé à droite, responsive */
.s2-nav-cta a { padding: 0.35rem 0.9rem; font-size: clamp(0.7rem, 1.5vw, 0.85rem); margin-left: 0.75rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   12. COMPOSANTS SMARTFORMS
═══════════════════════════════════════════════════════════════════════════ */
.smartforms-code-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.smartforms-code-window {
    background: #0f1f38;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--s2-radius-lg);
    overflow: hidden;
    box-shadow: var(--s2-shadow-lg);
}

.smartforms-code-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.smartforms-code-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
}

.smartforms-code-file {
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-family: var(--s2-font-sans);
}

.smartforms-code-body {
    margin: 0;
    padding: 1.35rem 1.1rem 1.5rem;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.85rem;
    line-height: 1.8;
    font-family: Consolas, 'Courier New', monospace;
}

.smartforms-code-comment {
    color: rgba(255, 255, 255, 0.35);
}

.smartforms-code-tag {
    color: #7dd3fc;
}

.smartforms-code-attr {
    color: #f9a8d4;
}

.smartforms-code-value {
    color: #86efac;
}

.smartforms-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

/* Code-grid context: benefits stack vertically alongside the code block */
.smartforms-code-grid .smartforms-benefits {
    grid-template-columns: 1fr;
}

.smartforms-benefit {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.35rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 14px 30px rgba(15, 31, 56, 0.05);
    min-height: 100%;
}

.smartforms-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 31, 56, 0.08);
}

.smartforms-benefit-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, var(--s2-color-primary-light) 100%);
    border-radius: 1rem;
    font-size: 1.35rem;
}

.smartforms-benefit h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.smartforms-benefit p {
    color: var(--s2-color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.smartforms-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--s2-color-border);
    border-radius: var(--s2-radius-lg);
    box-shadow: var(--s2-shadow);
    background: var(--s2-color-bg);
}

.smartforms-plan {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    border-right: 1px solid var(--s2-color-border);
    background: var(--s2-color-bg);
}

.smartforms-plan:last-child {
    border-right: none;
}

.smartforms-plan--accent {
    background: linear-gradient(135deg, var(--s2-color-primary) 0%, var(--s2-color-primary-dark) 100%);
    color: #fff;
}

.smartforms-plan-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    border-radius: var(--s2-radius-pill);
    background: var(--s2-color-primary-light);
    color: var(--s2-color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.smartforms-plan--accent .smartforms-plan-label {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.smartforms-plan-price {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.35rem;
    color: var(--s2-color-primary-dark);
}

.smartforms-plan--accent .smartforms-plan-price {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.smartforms-plan-period,
.smartforms-plan-volume,
.smartforms-plan-description,
.smartforms-plan li {
    color: var(--s2-color-text-muted);
}

.smartforms-plan-description {
    min-height: 3.4rem;
}

.smartforms-plan--accent .smartforms-plan-period,
.smartforms-plan--accent .smartforms-plan-volume,
.smartforms-plan--accent .smartforms-plan-description,
.smartforms-plan--accent li {
    color: rgba(255, 255, 255, 0.82);
}

.smartforms-plan-volume {
    margin: 1.1rem 0 1.35rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--s2-color-border);
    border-bottom: 1px solid var(--s2-color-border);
    font-size: 0.95rem;
}

.smartforms-plan--accent .smartforms-plan-volume {
    border-color: rgba(255, 255, 255, 0.18);
}

.smartforms-plan-features {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin: 0 0 1.75rem;
    padding: 0;
    flex: 1;
}

.smartforms-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.6;
}

.smartforms-plan-features li::before {
    content: '✓';
    color: var(--s2-color-accent);
    font-weight: 700;
}

.smartforms-plan--accent .smartforms-plan-features li::before {
    color: #fff;
}

.smartforms-pricing-note {
    text-align: center;
    color: var(--s2-color-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .s2-smartforms-shell,
    .smartforms-code-grid,
    .smartforms-pricing-grid {
        grid-template-columns: 1fr;
    }

    .s2-smartforms-story {
        padding: 1.6rem;
    }

    .smartforms-plan {
        border-right: none;
        border-bottom: 1px solid var(--s2-color-border);
    }

    .smartforms-plan:last-child {
        border-bottom: none;
    }
}



/* Fix : s2-feature--row nécessite display:flex (modificateur de .s2-feature) */
.s2-feature--row { display: flex; }

/* Badges dans une card flex-col : ne pas étirer sur toute la largeur */
.s2-d-flex.s2-flex-col > .s2-badge { align-self: flex-start; }

/* Contact : réduire l'écart entre label et valeur */
.s2-contact-info .s2-font-medium { line-height: 1.2; margin-bottom: 0.1rem; }

/* Features row : augmenter l'espacement vertical */
.s2-d-flex.s2-flex-col > .s2-feature--row { margin-bottom: 0.5rem; }

/* Formulaire : supprimer gap entre label et input */
.s2-form-group { margin-bottom: 1rem; }
.s2-form-group .s2-label { margin-bottom: 0.25rem; }

/* Supprime l'espace réservé du framework sous le bouton d'envoi */
.s2-contact-form { padding-bottom: 2.5rem; }

.s2-feedback,
.s2-form-notice {
    grid-column: 2;
}

.s2-form-notice {
    margin: 0;
    padding: 0.65rem 2.5rem 1rem;
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--s2-color-text-muted);
    text-align: left;
}

@media (max-width: 991px) {
    .s2-feedback,
    .s2-form-notice {
        grid-column: 1;
    }

    .s2-form-notice {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. FAQ
═══════════════════════════════════════════════════════════════════════════ */
.faq-item {
    border: 1px solid var(--s2-color-border);
    border-radius: var(--s2-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow var(--s2-transition);
}
.faq-item:hover {
    box-shadow: var(--s2-shadow-sm);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--s2-color-text);
    cursor: pointer;
    gap: 1rem;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    line-height: 1;
    color: var(--s2-color-primary);
    flex-shrink: 0;
    transition: transform var(--s2-transition);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item .faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--s2-color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
@media (max-width: 575px) {
    .faq-item summary { font-size: 0.88rem; padding: 0.85rem 1rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. GALERIE — Placeholder
═══════════════════════════════════════════════════════════════════════════ */
.example-placeholder {
    background: linear-gradient(135deg, var(--s2-color-primary-light) 0%, var(--s2-color-bg-alt) 100%);
    border: 2px dashed var(--s2-color-border);
    border-radius: var(--s2-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    color: var(--s2-color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
}
@media (max-width: 575px) {
    .example-placeholder { min-height: 160px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   14. FEEDFORMS — Feedback & états
═══════════════════════════════════════════════════════════════════════════ */

/* Feedback pleine largeur sous les deux colonnes */
#contactFeedback {
    position: static; /* annule le position:absolute du framework */
    grid-column: 1 / -1;
    margin: 0;
    border-top: 1px solid var(--s2-color-border);
    border-radius: 0 0 var(--s2-radius-lg) var(--s2-radius-lg);
    padding: 0.6rem 2.5rem;
    bottom: auto; left: auto; right: auto;
}

/* FeedForms : feedback en flux normal */
.s2-feedback {
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    animation: s2-fadeIn 0.3s ease;
}
.feedforms-spinner {
    display: inline-block;
    width: 1em; height: 1em;
    margin-right: 0.5em;
    vertical-align: -0.125em;
    animation: feedforms-spin 1s linear infinite;
}
@keyframes feedforms-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.form-submitted { opacity: 0.6; pointer-events: none; }
.s2-feedback.feedback-processing {
    display: block;
    background-color: #f8f9fa;
    color: var(--s2-color-text-muted);
    border: 1px solid var(--s2-color-border);
}
.s2-feedback.feedback-success {
    display: block;
    background-color: #bde6d1;
    color: #065f46;
    border: 1px solid #93dfbc;
}
.s2-feedback.feedback-error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}


/* ═══════════════════════════════════════════════════════════════════════════
   15. PARCOURS ÉTAPES — Responsive + connecteurs animés
═══════════════════════════════════════════════════════════════════════════ */

/* Pastille relative pour positionnement du drapeau */
.s2-steps--process .s2-step-icon {
    position: relative;
    z-index: 2;
}

/* Grille : 4 col desktop, 2×2 tablette, 1 col mobile */
.s2-steps--process { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 899px) {
    .s2-steps--process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
    .s2-steps--process { grid-template-columns: 1fr; }
}

/* Connecteurs visuels (desktop) */
@media (min-width: 900px) {
    .s2-steps--process { position: relative; }
    .s2-steps--process > div { position: relative; z-index: 2; }

    /* Ligne centrale animée */
    .s2-steps--process::after {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(12.5% + 2.75rem);
        right: calc(12.5% + 3.25rem);
        height: 2px;
        transform: translateY(-50%);
        background: repeating-linear-gradient(
            90deg,
            rgba(6, 182, 212, 0.45) 0px,
            rgba(6, 182, 212, 0.45) 8px,
            transparent 8px,
            transparent 16px
        );
        background-size: 16px 2px;
        animation: dash-move 1.2s linear infinite;
        z-index: 0;
    }
    @keyframes dash-move {
        from { background-position: 0 0; }
        to   { background-position: 16px 0; }
    }

    /* Marqueur de départ (pastille pleine) */
    .s2-steps--process::before {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(12.5% + 2.3rem);
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(6, 182, 212, 0.95);
        box-shadow: 0 0 0 6px rgba(6,182,212,0.06);
        z-index: 1;
    }

    /* Marqueur d'arrivée (losange) */
    .s2-steps--process > div:last-child::before {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(50% - 2.9rem);
        transform: translate(-50%, -50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: rgba(6, 182, 212, 0.95);
        z-index: 3;
    }

    /* Supprimer l'ancien pseudo-élément ::after du div:last-child */
    .s2-steps--process > div:last-child::after {
        content: none;
    }
}

/* Drapeau d'arrivée — pas d'éléments animés */
.s2-steps--process > div:last-child .s2-step-icon::before { content: none; }
.s2-steps--process > div:last-child .s2-step-icon::after { display: none; }
