/* ========== HERO ========== */
    .hero { position: relative; min-height: 400px; display: flex; align-items: stretch; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: #1a1a1a; }
    .hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%); z-index: 1; }
    .hero-building { position: absolute; right: 0; top: 0; bottom: 0; width: 65%; z-index: 0; }
    .hero-facade { position: absolute; right: 0; top: 0; width: 100%; height: 100%; background: url('https://drive.google.com/thumbnail?id=1qgMcVG-NA4LG4enNGCtmAvHVOcltZIoE&sz=w2000') center/cover no-repeat; }
    .hero-facade::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 70%, transparent 100%); z-index: 1; }
    .hero-person { position: absolute; right: 10%; top: 5%; width: 250px; height: 90%; z-index: 3; background: linear-gradient(180deg, #c28060 0%, #e8956a 30%, var(--orange) 60%, #d45a1e 100%); clip-path: polygon(30% 0%, 70% 0%, 85% 25%, 80% 55%, 95% 80%, 60% 100%, 40% 100%, 5% 80%, 20% 55%, 15% 25%); opacity: 0.15; display: none; }
    .hero-badge-wrap { position: absolute; right: 3%; top: 8%; z-index: 4; display: flex; flex-direction: column; gap: 12px; }
    .hero-badge { background: #fff; padding: 10px 16px; border-radius: 10px; font-size: 11px; font-weight: 700; color: var(--dark); box-shadow: 0 2px 12px rgba(0,0,0,0.15); white-space: nowrap; line-height: 1.4; text-align: center; }
    .hero-sign { position: absolute; top: 15%; right: 22%; background: var(--orange); color: #fff; font-size: 20px; font-weight: 900; font-style: italic; padding: 12px 32px; border-radius: 6px; white-space: nowrap; letter-spacing: 0.5px; box-shadow: 2px 4px 12px rgba(0,0,0,0.3); z-index: 2; display: none; }
    .hero-subsign { position: absolute; top: 32%; right: 22%; background: rgba(60,50,40,0.8); color: rgba(255,255,255,0.7); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 6px 16px; border-radius: 3px; white-space: nowrap; z-index: 2; display: none; }
    .hero-content { position: relative; z-index: 5; padding: 56px 56px 48px; max-width: 600px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
    .hero-breadcrumb { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.45; margin-bottom: 12px; font-style: italic; }
    .hero h1 { font-size: 48px; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.5px; }
    .hero h1 span { color: var(--orange); }
    .hero .hero-desc { font-size: 14px; line-height: 1.7; opacity: 0.8; max-width: 460px; margin-bottom: 28px; }
    .btn-candidature { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 16px 32px; border-radius: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; transition: background .2s; }
    .btn-candidature:hover { background: #d9551a; }
    .hero-content > * { opacity: 0; transform: translateY(25px); animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards; }
    .hero-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-content > *:nth-child(3) { animation-delay: .4s; }
    .hero-content > *:nth-child(4) { animation-delay: .55s; }
    @keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

    /* ========== STATS BAR - 2 MODÈLES ========== */
    .stats-bar { background: var(--dark); padding: 48px 56px; }
    .models-intro { text-align: center; max-width: 600px; margin: 0 auto 36px; }
    .models-intro h2 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 10px; }
    .models-intro p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .models-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
    .model-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 28px; text-align: center; transition: transform .3s, box-shadow .3s; }
    .model-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
    .model-icon { margin-bottom: 16px; }
    .model-title { font-size: 18px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .model-subtitle { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
    .model-stats { display: flex; justify-content: center; gap: 24px; }
    .stat-item { text-align: center; flex: 1; }
    .stat-value { font-size: 24px; font-weight: 900; color: var(--orange); margin-bottom: 6px; }
    .stat-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); line-height: 1.4; }

    /* ========== SECTION MODELE ========== */
    .section-modele { padding: 80px 56px; max-width: 1200px; margin: 0 auto; }
    .section-tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
    .section-modele h2 { font-size: 40px; font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 48px; color: var(--dark); }
    .modele-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .modele-left .photo-placeholder { width: 100%; aspect-ratio: 16/10; background: url('https://drive.google.com/thumbnail?id=1Tq55safJImsPDrvdu8Q4d-cQoSDd37xl&sz=w2000') center/cover no-repeat; border-radius: 16px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
    .photo-placeholder::after { content: 'OuiGlass'; position: absolute; font-size: 24px; font-weight: 900; font-style: italic; color: rgba(242,101,34,0.3); }
    .modele-left p { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 16px; text-align: justify; }
    .modele-left p strong { color: var(--orange); font-weight: 700; }
    .modele-right { position: sticky; top: 100px; }

    /* ========== CARD POURQUOI ========== */
    .card-pourquoi { background: #1a1a1a; border-radius: 24px; padding: 40px 36px; color: #fff; }
    .card-pourquoi h3 { font-size: 24px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
    .card-pourquoi h3 span { color: #fff; }
    .card-pourquoi-divider { width: 100%; height: 2px; background: rgba(255,255,255,0.15); margin-bottom: 28px; }
    .pourquoi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .pourquoi-item { text-align: center; padding: 16px 8px; }
    .pourquoi-icon { font-size: 28px; font-weight: 900; color: var(--orange); margin-bottom: 8px; font-style: italic; }
    .pourquoi-icon.stars { font-size: 20px; font-style: normal; color: #FFD700; }
    .pourquoi-value { font-size: 24px; font-weight: 900; color: var(--orange); font-style: italic; margin-bottom: 4px; }
    .pourquoi-item p { font-size: 10px; color: rgba(255,255,255,0.65); line-height: 1.5; }

    /* ========== STEPS PROCESS ========== */
    .process-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
    .process-step { display: flex; gap: 20px; align-items: flex-start; }
    .step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-info h4 { font-size: 14px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.3px; }
    .step-info p { font-size: 13px; color: #666; line-height: 1.7; }

    /* ========== TÉMOIGNAGES ========== */
    .section-temoignages { padding: 80px 56px; background: var(--gray); }
    .temoignages-inner { max-width: 1200px; margin: 0 auto; }
    .temoignages-inner .section-tag { margin-bottom: 16px; }
    .temoignages-inner h2 { font-size: 36px; font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; color: var(--dark); }
    .temoignages-subtitle { font-size: 14px; color: #888; margin-bottom: 48px; line-height: 1.6; }
    .temoignages-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .temoignage-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s; }
    .temoignage-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .video-placeholder { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--dark); display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
    .video-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%); z-index: 1; }
    .video-placeholder .initials { position: absolute; font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.08); letter-spacing: 4px; z-index: 0; }
    .play-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; z-index: 2; transition: transform .2s, background .2s; }
    .play-btn:hover { transform: scale(1.1); background: #d9551a; }
    .play-btn svg { margin-left: 3px; }
    .temoignage-info { padding: 20px 24px; }
    .temoignage-name { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .temoignage-role { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
    .temoignage-quote { font-size: 13px; color: #666; line-height: 1.6; font-style: italic; }

    /* ========== CTA BANNER ========== */
    .cta-banner { background: var(--dark); border-radius: 20px; margin: 0 56px 80px; margin-top: 0; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .cta-banner-text h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 4px; }
    .cta-banner-text h3 span { color: var(--orange); font-size: 16px; display: block; margin-top: 4px; }
    .cta-banner-text p { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 8px; }
    .btn-candidature-banner { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 16px 32px; border-radius: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; transition: background .2s; white-space: nowrap; flex-shrink: 0; }
    .btn-candidature-banner:hover { background: #d9551a; }

    /* ========== FOOTER ========== */
    .footer { background: var(--dark); color: #fff; padding: 56px 56px 24px; }
    .footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
    .footer-brand p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.5); margin: 16px 0 24px; }
    .btn-rdv-footer { display: inline-block; background: var(--orange); color: #fff; padding: 14px 32px; border-radius: 30px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; transition: background .2s; }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color .2s; }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 8px; }
    .copyright { font-size: 11px; color: rgba(255,255,255,0.3); }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--orange); }

    /* ========== MODAL CANDIDATURE ========== */
    .modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
    .modal-backdrop.open { display: flex; }
    .modal-card { background: #fff; border-radius: 24px; padding: 44px 48px 48px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 48px rgba(0,0,0,0.2); animation: modalIn .3s ease; position: relative; }
    @keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
    .modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 24px; color: #999; cursor: pointer; transition: color .2s; line-height: 1; }
    .modal-close:hover { color: var(--dark); }
    .modal-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #bbb; text-align: center; margin-bottom: 8px; }
    .modal-card h2 { font-size: 22px; font-weight: 900; text-align: center; color: var(--dark); margin-bottom: 16px; }
    .modal-divider { width: 100%; height: 1px; background: #eee; margin-bottom: 28px; }
    .modal-form .form-group { margin-bottom: 20px; }
    .modal-form .form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .modal-form .form-input { width: 100%; padding: 15px 18px; border-radius: 12px; border: none; background: var(--orange-light); color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; outline: none; transition: box-shadow .2s; }
    .modal-form .form-input::placeholder { color: #c99; font-weight: 400; }
    .modal-form .form-input:focus { box-shadow: 0 0 0 3px rgba(242,101,34,0.12); }
    .modal-form textarea.form-input { min-height: 100px; resize: vertical; border-radius: 12px; }
    .modal-btn-wrap { text-align: center; margin-top: 28px; }
    .btn-modal-submit { display: inline-block; background: var(--orange); color: #fff; padding: 16px 52px; border-radius: 30px; border: none; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background .2s; }
    .btn-modal-submit:hover { background: #d9551a; }

    /* ========== ANIMATIONS ========== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ========== RESPONSIVE 1100px ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero h1 { font-size: 38px; }
      .hero-content { padding: 48px 36px 40px; }
      .hero-building { width: 55%; }
      .hero-sign { font-size: 16px; padding: 10px 24px; }
      .stats-bar { padding: 36px 36px; }
      .models-wrap { gap: 24px; }
      .stat-value { font-size: 20px; }
      .model-stats { gap: 16px; }
      .section-modele { padding: 60px 36px; }
      .section-modele h2 { font-size: 32px; }
      .modele-grid { gap: 36px; }
      .cta-banner { margin: 0 36px 60px; padding: 32px 36px; }
      .section-temoignages { padding: 60px 36px; }
      .temoignages-inner h2 { font-size: 30px; }
      .temoignages-grid { grid-template-columns: 1fr 1fr; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== MOBILE 768px ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }
      .hero { min-height: 300px; }
      .hero-content { padding: 36px 24px 28px; max-width: 100%; }
      .hero h1 { font-size: 28px; }
      .hero .hero-desc { font-size: 12px; }
      .hero-building { display: none; }
      .hero-badge-wrap { display: none; }
      .btn-candidature { padding: 14px 24px; font-size: 12px; }
      .stats-bar { padding: 32px 20px; }
      .models-wrap { grid-template-columns: 1fr; gap: 20px; }
      .model-card { padding: 28px 20px; }
      .stat-value { font-size: 20px; }
      .model-stats { flex-wrap: wrap; gap: 16px; }
      .stat-item { min-width: 80px; }
      .section-modele { padding: 48px 20px; }
      .section-modele h2 { font-size: 26px; margin-bottom: 32px; }
      .modele-grid { grid-template-columns: 1fr; gap: 32px; }
      .card-pourquoi { padding: 28px 24px; }
      .card-pourquoi h3 { font-size: 20px; }
      .modele-right { position: static; }
      .cta-banner { margin: 0 20px 48px; padding: 28px 24px; flex-direction: column; text-align: center; border-radius: 16px; }
      .btn-candidature-banner { width: 100%; justify-content: center; }
      .modal-card { padding: 32px 24px 36px; border-radius: 18px; }
      .modal-card h2 { font-size: 19px; }
      .modal-form .form-group label { font-size: 13px; }
      .modal-form .form-input { font-size: 13px; padding: 13px 16px; }
      .btn-modal-submit { width: 100%; padding: 16px; }
      .section-temoignages { padding: 48px 20px; }
      .temoignages-inner h2 { font-size: 24px; }
      .temoignages-grid { grid-template-columns: 1fr; gap: 20px; }
      .temoignage-info { padding: 16px 20px; }
      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== SMALL MOBILE 420px ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero { min-height: 260px; }
      .hero-content { padding: 28px 18px 22px; }
      .hero h1 { font-size: 24px; }
      .hero .hero-desc { font-size: 11px; }
      .btn-candidature { padding: 12px 20px; font-size: 11px; width: 100%; justify-content: center; }
      .stats-bar { padding: 24px 16px; }
      .stat-value { font-size: 18px; }
      .model-title { font-size: 15px; }
      .model-stats { flex-direction: column; gap: 12px; }
      .section-modele { padding: 36px 16px; }
      .section-modele h2 { font-size: 22px; }
      .pourquoi-grid { gap: 16px; }
      .pourquoi-value { font-size: 20px; }
      .step-number { width: 40px; height: 40px; font-size: 14px; }
      .step-info h4 { font-size: 13px; }
      .step-info p { font-size: 12px; }
      .cta-banner { margin: 0 16px 36px; padding: 24px 18px; }
      .section-temoignages { padding: 36px 16px; }
      .temoignages-inner h2 { font-size: 22px; }
      .play-btn { width: 44px; height: 44px; }
    }