/* ========== HERO ========== */
    .hero { position: relative; min-height: 340px; 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.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 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: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://drive.google.com/thumbnail?id=1iaWhz2mgBHO6df2AkIJrcgOD0ogcgp26&sz=w2000') center/cover no-repeat; }
    .hero-facade::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,0,0,0.03) 80px, rgba(0,0,0,0.03) 81px); }
    .hero-sign { position: absolute; top: 12%; right: 18%; background: var(--orange); color: #fff; font-size: 22px; font-weight: 900; font-style: italic; padding: 14px 36px; 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-window { position: absolute; background: linear-gradient(180deg, rgba(140,160,180,0.2) 0%, rgba(100,120,140,0.15) 50%, rgba(180,200,220,0.1) 100%); border: 2px solid rgba(120,110,100,0.3); border-radius: 2px; display: none; }
    .hero-window.hw1 { width: 26%; height: 55%; bottom: 0; left: 3%; }
    .hero-window.hw2 { width: 26%; height: 55%; bottom: 0; left: 32%; }
    .hero-window.hw3 { width: 20%; height: 55%; bottom: 0; right: 3%; }
    .hero-door-label { position: absolute; bottom: 30%; left: 38%; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; padding: 5px 14px; border-radius: 2px; z-index: 2; display: none; }
    .hero-subsign { position: absolute; top: 38%; right: 18%; 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-badge { position: absolute; top: 10%; right: 4%; background: var(--orange); color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 8px; font-weight: 700; text-align: center; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.3px; z-index: 3; box-shadow: 1px 2px 8px rgba(0,0,0,0.2); display: none; }
    .hero-badge svg { display: block; margin: 0 auto 4px; }
    .hero-content { position: relative; z-index: 2; padding: 56px 56px 48px; max-width: 580px; 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: 50px; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; letter-spacing: -0.5px; }
    .hero h1 span { color: var(--orange); }
    .hero .hero-desc { font-size: 14px; line-height: 1.7; opacity: 0.75; max-width: 440px; }
    .hero .hero-desc strong { font-weight: 700; opacity: 1; }
    .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; }
    @keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

    /* ========== STEPS INDICATOR ========== */
    .steps-bar { background: #fff; padding: 28px 56px; display: flex; justify-content: center; }
    .steps-inner { display: flex; align-items: center; gap: 16px; max-width: 520px; width: 100%; }
    .step-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); background: var(--gray); padding: 7px 16px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; transition: all .3s; }
    .step-label.active { background: var(--orange-light); color: var(--orange); }
    .step-dots { display: flex; gap: 6px; flex: 1; }
    .step-dot { flex: 1; height: 5px; border-radius: 3px; background: #e0e0e0; transition: background .3s; }
    .step-dot.active { background: var(--orange); }

    /* ========== FORM SECTION ========== */
    .form-section { background: var(--gray); padding: 40px 20px 64px; display: flex; flex-direction: column; align-items: center; }
    .form-card { background: #fff; border-radius: 24px; box-shadow: 0 2px 32px rgba(0,0,0,0.06); padding: 44px 48px 48px; max-width: 520px; width: 100%; margin: 0 auto; }
    .form-step-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #bbb; margin-bottom: 16px; text-align: center; display: block; }
    .form-card h2 { font-size: 20px; font-weight: 900; text-align: center; margin-bottom: 20px; color: var(--dark); }
    .form-divider { width: 100%; height: 1px; background: #eee; margin-bottom: 28px; }

    /* Step content switching */
    .step-content { display: none; }
    .step-content.active { display: block; animation: fadeInStep .4s ease; }
    @keyframes fadeInStep { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

    /* ========== ÉTAPE 1 ========== */
    .phone-wrap { margin-bottom: 32px; }
    .phone-input { width: 100%; padding: 15px 20px; border-radius: 30px; border: 2px solid #e0e0e0; background: #fff; color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; text-align: center; outline: none; transition: border-color .2s, box-shadow .2s; }
    .phone-input::placeholder { color: #bbb; font-weight: 500; }
    .phone-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,101,34,0.12); }
    .form-card h3 { font-size: 15px; font-weight: 800; text-align: center; margin-bottom: 20px; color: var(--dark); }
    .prestation-box { border: 1.5px solid #eee; border-radius: 16px; padding: 24px 16px 20px; margin-bottom: 20px; }
    .prestation-choices { display: flex; justify-content: center; gap: 16px; }
    .prestation-choice { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; padding: 10px 12px; border-radius: 12px; transition: background .2s, box-shadow .2s; border: 2px solid transparent; width: 120px; flex-shrink: 0; }
    .prestation-choice:hover { background: #fafafa; }
    .prestation-choice.selected { background: var(--orange-light); border-color: var(--orange); }
    .car-top { width: 78px; height: 100px; }
    .car-top svg { width: 100%; height: 100%; }
    .prestation-choice .choice-label { font-size: 11px; font-weight: 700; color: var(--dark); text-align: center; line-height: 1.3; }
    .insurance-box { background: var(--orange); border-radius: 16px; padding: 20px 24px; margin-bottom: 28px; }
    .insurance-q { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
    .insurance-q svg { flex-shrink: 0; }
    .insurance-q span { font-size: 13px; font-weight: 800; color: #fff; }
    .insurance-btns { display: flex; gap: 10px; }
    .btn-ins { flex: 1; padding: 11px 16px; border-radius: 30px; border: 2px solid transparent; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; cursor: pointer; text-align: center; transition: all .2s; }
    .btn-ins.oui { background: var(--green); color: #fff; border-color: var(--green); }
    .btn-ins.oui:hover { background: #238a32; border-color: #238a32; }
    .btn-ins.oui.active { background: var(--green); color: #fff; border-color: #fff; }
    .btn-ins.non { background: #fff; color: var(--dark); border-color: #e0e0e0; }
    .btn-ins.non:hover { border-color: #aaa; }
    .btn-ins.non.active { background: var(--dark); color: #fff; border-color: var(--dark); }

    /* ========== ÉTAPE 2 ========== */
    .field-label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .field-label-center { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; text-align: center; }
    .field-description { font-size: 13px; color: #666; margin: 24px 0 20px; text-align: center; line-height: 1.5; }
    .dropdown-wrap { position: relative; margin-bottom: 24px; }
    .dropdown-select { width: 100%; padding: 13px 44px 13px 20px; border-radius: 30px; border: 1.5px solid #e0e0e0; background: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #999; appearance: none; cursor: pointer; outline: none; transition: border-color .2s; }
    .dropdown-select:focus { border-color: var(--orange); }
    .dropdown-arrow { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; }
    .plate-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
    .plate-input { display: flex; align-items: stretch; border: 2px solid #ccc; border-radius: 6px; overflow: hidden; max-width: 300px; width: 100%; transition: border-color .2s; background: #fff; }
    .plate-input:focus-within { border-color: var(--orange); }
    .plate-eu { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #003399; padding: 8px 10px; flex-shrink: 0; gap: 2px; min-width: 36px; }
    .plate-eu-stars { display: flex; align-items: center; justify-content: center; }
    .plate-eu-f { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; line-height: 1; }
    .immat-input { flex: 1; border: none; padding: 16px 16px; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; text-align: center; letter-spacing: 3px; color: var(--dark); outline: none; text-transform: uppercase; background: transparent; }
    .immat-input::placeholder { color: #ccc; font-weight: 500; letter-spacing: 2px; }
    .info-notice { display: flex; gap: 10px; background: var(--orange-light); border-radius: 10px; padding: 16px 18px; margin-top: 4px; align-items: flex-start; }
    .info-notice-icon { flex-shrink: 0; margin-top: 1px; }
    .info-notice p { font-size: 11px; line-height: 1.6; color: #666; }

    /* ========== ÉTAPE 3 ========== */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-bottom: 28px; }
    .form-group { display: flex; flex-direction: column; }
    .form-group.full-width { grid-column: 1 / -1; }
    .form-group label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 12px; text-align: left; }
    .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: background .2s, box-shadow .2s; }
    .form-input::placeholder { color: #999; font-weight: 400; }
    .form-input:focus { box-shadow: 0 0 0 3px rgba(242,101,34,0.12); }

    /* ========== ÉTAPE 4 ========== */
    .step4-notice { font-size: 12px; color: #999; font-style: italic; margin-bottom: 24px; line-height: 1.5; text-align: center; }
    .date-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #bbb; margin-bottom: 16px; margin-top: 24px; }
    .date-label:first-of-type { margin-top: 0; }
    .day-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; overflow-x: auto; padding: 0 4px; }
    .day-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1.5px solid #e0e0e0; border-radius: 50%; background: #fff; cursor: pointer; flex-shrink: 0; color: #999; font-size: 16px; font-weight: bold; transition: all .2s; }
    .day-arrow:hover { border-color: var(--orange); color: var(--orange); }
    .day-cards-wrap { display: flex; gap: 10px; flex: 1; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 4px; }
    .day-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 70px; height: 80px; border: 1.5px solid #e0e0e0; border-radius: 12px; padding: 8px; cursor: pointer; transition: all .2s; background: #fff; flex-shrink: 0; }
    .day-card:hover { border-color: var(--orange); }
    .day-card.selected { border-color: var(--orange); }
    .day-name { font-size: 10px; font-weight: 700; color: #999; text-transform: uppercase; margin-bottom: 4px; }
    .day-number { font-size: 20px; font-weight: 900; color: var(--dark); }
    .time-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; overflow-x: auto; padding: 0 4px; }
    .time-cards-wrap { display: flex; gap: 10px; flex: 1; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 4px; }
    .time-slot { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 70px; height: 70px; border: 1.5px solid #e0e0e0; border-radius: 50%; cursor: pointer; transition: all .2s; background: #fff; flex-shrink: 0; }
    .time-slot:hover { border-color: var(--orange); }
    .time-slot.selected { border-color: var(--orange); }
    .time-icon { width: 16px; height: 16px; margin-bottom: 4px; }
    .time-text { font-size: 13px; font-weight: 700; color: var(--dark); }

    /* ========== BUTTONS ========== */
    .continuer-wrap { text-align: center; padding-top: 28px; width: 100%; max-width: 520px; }
    .btn-continuer { display: inline-block; background: var(--orange); color: #fff; padding: 16px 52px; border-radius: 30px; border: none; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background .2s, box-shadow .2s; }
    .btn-continuer:hover { background: #d9551a; box-shadow: 0 6px 20px rgba(242,101,34,0.3); }

    /* ========== SUCCESS ========== */
    .success-message { display: none; text-align: left; padding: 44px 48px 48px; }
    .success-message.active { display: block; animation: fadeInStep .5s ease; }
    .success-message h2 { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 8px; text-align: center; }
    .success-divider { width: 100%; height: 1px; background: #eee; margin: 16px 0 24px; }
    .success-message .success-text { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 24px; }
    .success-warning { background: var(--orange-light); border-radius: 10px; padding: 16px 18px; margin-bottom: 24px; display: flex; gap: 10px; align-items: flex-start; }
    .success-warning .warn-icon { flex-shrink: 0; font-size: 16px; }
    .success-warning p { font-size: 12px; color: #666; line-height: 1.6; }
    .success-phone-cta { font-size: 14px; color: var(--dark); margin-bottom: 16px; }
    .success-phone-cta svg { vertical-align: middle; margin-right: 4px; }
    .btn-phone-success { display: inline-block; background: var(--orange); color: #fff; padding: 12px 28px; border-radius: 30px; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; text-decoration: none; transition: background .2s; }
    .btn-phone-success:hover { background: #d9551a; }
    .success-retry { text-align: center; margin-top: 24px; }
    .success-retry button { background: none; border: none; cursor: pointer; color: #999; font-size: 20px; transition: color .2s; }
    .success-retry button:hover { color: var(--orange); }

    /* ========== FOOTER ========== */
    .footer { background: var(--dark); color: #fff; padding: 56px 56px 28px; }
    .footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-logo-text { font-size: 30px; font-weight: 900; font-style: italic; margin-bottom: 14px; }
    .footer-brand p { font-size: 13px; line-height: 1.6; opacity: 0.6; margin-bottom: 22px; max-width: 280px; }
    .btn-rdv-footer { display: inline-block; background: var(--orange); color: #fff; padding: 14px 26px; border-radius: 30px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 13px; opacity: 0.55; transition: opacity .2s; }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .12s; }

    /* ========== TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero h1 { font-size: 40px; }
      .hero-content { padding: 48px 36px 40px; }
      .hero-building { width: 55%; }
      .hero-sign { font-size: 18px; padding: 10px 28px; }
      .steps-bar { padding: 24px 36px; }
      .form-section { padding: 32px 36px 52px; }
      .form-card { padding: 36px 32px 40px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
      .day-card { min-width: 65px; height: 75px; }
      .time-slot { width: 65px; height: 65px; }
    }

    /* ========== MOBILE ========== */
    @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: 260px; }
      .hero-content { padding: 36px 24px 28px; max-width: 100%; }
      .hero h1 { font-size: 28px; }
      .hero .hero-desc { font-size: 12px; }
      .hero-building { display: none; }
      .steps-bar { padding: 20px 20px; }
      .steps-inner { gap: 10px; }
      .step-dot { height: 4px; }
      .form-section { padding: 0 16px 44px; }
      .form-card { padding: 28px 22px 32px; border-radius: 18px; }
      .form-step-label { font-size: 9px; }
      .form-card h2 { font-size: 17px; margin-bottom: 16px; }
      .form-grid { grid-template-columns: 1fr; gap: 16px; }
      .form-group label { font-size: 12px; }
      .field-label { font-size: 12px; }
      .field-label-center { font-size: 12px; }
      .field-description { font-size: 12px; }
      .plate-input { max-width: 100%; }
      .immat-input { font-size: 16px; letter-spacing: 2px; }
      .info-notice p { font-size: 10px; }
      .btn-continuer { width: 100%; padding: 16px; }
      .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; }
      .date-label { font-size: 10px; }
      .step4-notice { font-size: 11px; }
      .day-card { min-width: 60px; height: 70px; }
      .day-number { font-size: 18px; }
      .time-slot { width: 60px; height: 60px; }
      .time-text { font-size: 12px; }
      .prestation-choices { gap: 8px; flex-wrap: wrap; }
      .prestation-choice { width: 100px; }
      .car-top { width: 60px; height: 78px; }
      .prestation-choice .choice-label { font-size: 10px; }
      .success-message { padding: 28px 22px 32px !important; }
      .success-text { font-size: 13px !important; }
      .success-warning { padding: 12px 14px; }
      .success-warning p { font-size: 11px; }
      .success-phone-cta { font-size: 13px; }
      .btn-phone-success { font-size: 13px; padding: 11px 24px; }
    }

    /* ========== SMALL MOBILE ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero { min-height: 220px; }
      .hero-content { padding: 28px 18px 22px; }
      .hero h1 { font-size: 24px; }
      .form-section { padding: 0 12px 36px; }
      .form-card { padding: 24px 16px 28px; }
      .form-card h2 { font-size: 16px; }
      .form-group label { font-size: 11px; }
      .form-input { font-size: 13px; padding: 12px 14px; }
      .immat-input { font-size: 14px; letter-spacing: 1px; }
      .day-card { min-width: 55px; height: 65px; }
      .day-number { font-size: 16px; }
      .time-slot { width: 55px; height: 55px; }
      .time-text { font-size: 11px; }
      .prestation-choice { width: 90px; padding: 8px 6px; }
      .car-top { width: 52px; height: 68px; }
      .prestation-choice .choice-label { font-size: 9px; }
      .success-message { padding: 24px 16px 28px !important; }
      .success-message h2 { font-size: 17px; }
      .success-text { font-size: 12px !important; }
      .success-warning p { font-size: 10px; }
      .success-phone-cta { font-size: 12px; }
      .btn-phone-success { font-size: 12px; padding: 10px 20px; width: 100%; text-align: center; }
    }