/*
    Projet  : Start-Elite
    Fichier : assets/css/fiche-technique.css
    Page    : FICHE TECHNIQUE - START-ELITE
*/

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

        :root {
            --gold: #ffb648;
            --gold-light: #ffd089;

            /* Palette contenu clair */
            --c-dark: #1a2235;
            --c-body: #374151;
            --c-muted: #6b7a99;
            --c-accent: #b87513;
            --c-accent-hover: #8f580e;
            --c-bg: #f0f4f8;
            --c-white: #ffffff;
            --c-border: rgba(0,0,0,0.08);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--c-dark);
            background: var(--c-bg);
            overflow-x: hidden;
        }

        
    /* Fil d'Ariane (breadcrumb) : indique la position dans le site */
        .breadcrumb {
            background: var(--c-white);
            border-bottom: 1px solid var(--c-border);
            padding: 14px 0;
        }

        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--c-muted);
        }

        .breadcrumb-content a {
            color: var(--c-accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb-content a:hover { color: var(--gold); }

        
        /* === CONTENU PRINCIPAL === */

        .main-content {
            max-width: 1400px;
            margin: 70px auto;
            padding: 0 30px;
        }

        .page-title {
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(38px, 5vw, 64px);
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--c-dark);
            margin-bottom: 50px;
        }

        /* TECH CONTENT */
        .tech-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--c-white);
            border: 1px solid var(--c-border);
            border-radius: 3px;
            padding: 35px 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .tech-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--c-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        .tech-section { margin-bottom: 30px; }

        .tech-section h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--c-dark);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--c-accent);
        }

        .tech-section ul {
            list-style: none;
            padding-left: 0;
        }

        .tech-section li {
            color: var(--c-body);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            line-height: 1.7;
        }

        .tech-section li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--c-accent);
            font-weight: 700;
            font-size: 20px;
        }

        .tech-section li strong { color: var(--c-dark); }

        .tech-section a {
            color: var(--c-accent);
            text-decoration: none;
            font-weight: 600;
        }

        .tech-section a:hover { text-decoration: underline; }

        .tech-subsection {
            margin-left: 20px;
            padding-top: 10px;
        }

        
    /* Bouton retour en haut de page (apparaît après 300px de scroll) */
        #scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: #1a1530;
            width: 46px;
            height: 46px;
            border-radius: 3px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,182,72,0.4);
            z-index: 999;
            transition: all 0.3s;
        }
        #scroll-top-btn.visible,
        #scroll-top-btn.show { display: flex; }
        #scroll-top-btn:hover { background: var(--gold-light); transform: translateY(-3px); }

        
        /* CTA bas de page */
        .cta-block {
            background: var(--c-white);
            border-top: 1px solid var(--c-border);
            padding: 60px 30px;
            text-align: center;
        }

        .cta-block-inner { max-width: 700px; margin: 0 auto; }

        .cta-block-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(26px, 4vw, 38px);
            color: var(--c-dark);
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .cta-block p {
            color: var(--c-muted);
            font-size: 16px;
            margin-bottom: 32px;
        }

        .cta-block-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        .cta-btn-primary {
            display: inline-block;
            background: var(--c-accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: 4px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s;
        }

        .cta-btn-primary:hover { background: var(--c-accent-hover); }

        .cta-btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--c-accent);
            border: 2px solid var(--c-accent);
            padding: 12px 28px;
            border-radius: 4px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s, color 0.2s;
        }

        .cta-btn-outline:hover {
            background: var(--c-accent);
            color: #fff;
        }

        /* === RESPONSIVE — MEDIA QUERIES · ≤ 768px : mobile paysage === */

        @media (max-width: 768px) {
            .tech-content h2 { font-size: 22px; }
            .tech-section h3 { font-size: 17px; }
        }
