/* ========== HIDE RECAPTCHA BADGE ========== */
.grecaptcha-badge { visibility: hidden !important; }

/* ========== ANIMATIONS ========== */
@keyframes slideInSubstep {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutSubstep {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== BASE STYLES ========== */
.lenos-cfg * { box-sizing: border-box; margin: 0; padding: 0; }
.lenos-cfg {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 20px 60px;
    background: #fff;
    min-height: 100vh;
    position: relative;
}
.lenos-cfg .cfg-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.lenos-cfg .cfg-title span {
    color: #018837;
}

/* ========== STEPPER CLEAN ========== */
.lenos-cfg .cfg-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}
.lenos-cfg .cfg-stepper-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}
.lenos-cfg .cfg-stepper-item.active {
    background: #018837;
}
.lenos-cfg .cfg-stepper-item.completed {
    background: #d1fae5;
}
.lenos-cfg .cfg-stepper-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #6b7280;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-stepper-item.active .cfg-stepper-num {
    color: #018837;
}
.lenos-cfg .cfg-stepper-item.completed .cfg-stepper-num {
    background: #018837;
    color: #fff;
}
.lenos-cfg .cfg-stepper-label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
}
.lenos-cfg .cfg-stepper-item.active .cfg-stepper-label { color: #fff; }
.lenos-cfg .cfg-stepper-item.completed .cfg-stepper-label { color: #018837; }
.lenos-cfg .cfg-stepper-line {
    width: 50px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: background 0.3s ease;
}
.lenos-cfg .cfg-stepper-line.completed { background: #018837; }
.lenos-cfg .cfg-stepper-check { display: none; }
.lenos-cfg .cfg-stepper-item.completed .cfg-stepper-check { display: block; }
.lenos-cfg .cfg-stepper-item.completed .cfg-stepper-numtext { display: none; }

/* ========== PRODUCTS GRID ========== */
.lenos-cfg .cfg-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.lenos-cfg .cfg-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.lenos-cfg .cfg-card:hover {
    border-color: #018837;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lenos-cfg .cfg-card.selected {
    border-color: #018837;
    background: #f8fdf9;
    box-shadow: 0 0 0 3px rgba(1,136,55,0.15);
}
.lenos-cfg .cfg-card-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-card-img svg {
    color: #9ca3af;
    transition: color 0.3s ease;
}
.lenos-cfg .cfg-card:hover .cfg-card-img svg,
.lenos-cfg .cfg-card.selected .cfg-card-img svg { color: #018837; }
.lenos-cfg .cfg-card.selected .cfg-card-img { background: #e8f5e9; }
.lenos-cfg .cfg-card-name {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.lenos-cfg .cfg-card.selected .cfg-card-name { color: #018837; }
.lenos-cfg .cfg-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ========== SUB-STEP PROGRESS ========== */
.lenos-cfg .cfg-substep-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}
.lenos-cfg .cfg-substep-bar {
    width: 180px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}
.lenos-cfg .cfg-substep-fill {
    height: 100%;
    background: #018837;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}
.lenos-cfg .cfg-substep-text {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}
.lenos-cfg .cfg-substep-text span:first-child {
    color: #018837;
}

/* ========== SECTIONS & SUBSTEPS ========== */
.lenos-cfg .cfg-section {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}
.lenos-cfg .cfg-section.hidden { display: none; }

/* Sub-step mode: hide all by default, show only active */
.lenos-cfg .cfg-substep {
    display: none;
}
.lenos-cfg .cfg-substep.active {
    display: flex;
    animation: slideInSubstep 0.3s ease-out;
}
.lenos-cfg .cfg-substep.exiting {
    animation: slideOutSubstep 0.25s ease-in forwards;
}

/* Continue button for inputs */
.lenos-cfg .cfg-btn-continue {
    margin-top: 24px;
    background: #018837;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-btn-continue:hover {
    background: #016d2c;
}
.lenos-cfg .cfg-btn-continue:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.lenos-cfg .cfg-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    padding-bottom: 14px;
}
.lenos-cfg .cfg-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #018837;
    border-radius: 2px;
}
.lenos-cfg .cfg-section-title .req { color: #ef4444; font-weight: 400; }

/* ========== AUTRE DEMANDE ========== */
.lenos-cfg .cfg-autre-section {
    display: none;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
}
.lenos-cfg .cfg-autre-section.visible { display: block; }
.lenos-cfg .cfg-autre-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
}
.lenos-cfg .cfg-autre-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.lenos-cfg .cfg-autre-header svg {
    color: #018837;
    padding: 8px;
    background: #e8f5e9;
    border-radius: 8px;
}
.lenos-cfg .cfg-autre-card textarea {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s ease;
    line-height: 1.5;
}
.lenos-cfg .cfg-autre-card textarea:focus {
    outline: none;
    border-color: #018837;
}

/* ========== VISUAL OPTIONS ========== */
.lenos-cfg .cfg-visual-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.lenos-cfg .cfg-visual-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    width: 150px;
    min-height: 170px;
}
.lenos-cfg .cfg-visual-opt:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-visual-opt.selected {
    border-color: #018837;
    background: #f8fdf9;
    box-shadow: 0 0 0 3px rgba(1,136,55,0.15);
}
.lenos-cfg .cfg-visual-opt .cfg-img-wrap {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-visual-opt .cfg-img-wrap svg {
    color: #9ca3af;
    transition: color 0.3s ease;
}
.lenos-cfg .cfg-visual-opt:hover .cfg-img-wrap svg,
.lenos-cfg .cfg-visual-opt.selected .cfg-img-wrap svg { color: #018837; }
.lenos-cfg .cfg-visual-opt.selected .cfg-img-wrap { background: #e8f5e9; }
.lenos-cfg .cfg-visual-opt .opt-label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}
.lenos-cfg .cfg-visual-opt.selected .opt-label { color: #018837; }
.lenos-cfg .cfg-visual-opt .none-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
}
.lenos-cfg .cfg-visual-opt.selected .none-icon { background: #e8f5e9; }

/* ========== COLORS ========== */
.lenos-cfg .cfg-color-opts { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.lenos-cfg .cfg-color-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.lenos-cfg .cfg-color-opt:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-color-opt.selected {
    border-color: #018837;
    background: #f8fdf9;
    box-shadow: 0 0 0 3px rgba(1,136,55,0.15);
}
.lenos-cfg .cfg-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lenos-cfg .cfg-swatch.anthracite { background: #3a3b3b; }
.lenos-cfg .cfg-swatch.vert { background: #018837; }
.lenos-cfg .cfg-swatch.galva { background: linear-gradient(145deg, #d1d5db, #9ca3af); }
.lenos-cfg .cfg-swatch.ral7016 { background: #2a3133; }
.lenos-cfg .cfg-swatch.ral9005 { background: #0a0a0a; }
.lenos-cfg .cfg-swatch.autre { background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red); }
.lenos-cfg .cfg-color-label { font-size: 13px; font-weight: 600; color: #374151; }
.lenos-cfg .cfg-color-opt.selected .cfg-color-label { color: #018837; }

/* ========== HEIGHT OPTIONS ========== */
.lenos-cfg .cfg-height-opts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lenos-cfg .cfg-height-opt {
    padding: 14px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
    background: #fff;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}
.lenos-cfg .cfg-height-opt:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-height-opt.selected {
    border-color: #018837;
    background: #018837;
    color: #fff;
}
.lenos-cfg .cfg-height-opt .h-value { font-size: 18px; font-weight: 700; }
.lenos-cfg .cfg-height-opt .h-unit { font-size: 12px; opacity: 0.8; }

/* ========== LENGTH INPUT ========== */
.lenos-cfg .cfg-length-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 10px;
}
.lenos-cfg .cfg-input-length {
    width: 120px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    border-radius: 8px;
}
.lenos-cfg .cfg-unit { font-size: 14px; font-weight: 600; color: #6b7280; }

/* ========== INPUTS ========== */
.lenos-cfg .cfg-input {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px;
    font-size: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    text-align: center;
    transition: border-color 0.3s ease;
    background: #fff;
}
.lenos-cfg .cfg-input:focus {
    outline: none;
    border-color: #018837;
}
.lenos-cfg .cfg-input.error {
    border-color: #ef4444;
}
.lenos-cfg .cfg-ral-input {
    margin-top: 14px;
    display: none;
}
.lenos-cfg .cfg-ral-input.visible { display: block; }

/* ========== POSE OPTIONS ========== */
.lenos-cfg .cfg-pose-opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 380px; }
.lenos-cfg .cfg-pose-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 150px;
    background: #fff;
}
.lenos-cfg .cfg-pose-opt:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-pose-opt.selected {
    border-color: #018837;
    background: #f8fdf9;
    box-shadow: 0 0 0 3px rgba(1,136,55,0.15);
}
.lenos-cfg .cfg-pose-opt.disabled { opacity: 0.4; pointer-events: none; }
.lenos-cfg .cfg-pose-opt .cfg-img-wrap {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-pose-opt .cfg-img-wrap svg { color: #9ca3af; transition: color 0.3s ease; }
.lenos-cfg .cfg-pose-opt:hover .cfg-img-wrap svg,
.lenos-cfg .cfg-pose-opt.selected .cfg-img-wrap svg { color: #018837; }
.lenos-cfg .cfg-pose-opt.selected .cfg-img-wrap { background: #e8f5e9; }
.lenos-cfg .cfg-pose-opt .pose-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}
.lenos-cfg .cfg-pose-opt.selected .pose-name { color: #018837; }

/* ========== CHECKBOX OPTIONS ========== */
.lenos-cfg .cfg-checkbox-opt {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 480px;
    background: #fff;
}
.lenos-cfg .cfg-checkbox-opt:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-checkbox-opt.selected {
    border-color: #018837;
    background: #f8fdf9;
    box-shadow: 0 0 0 3px rgba(1,136,55,0.15);
}
.lenos-cfg .cfg-checkbox-opt.disabled { opacity: 0.4; pointer-events: none; }
.lenos-cfg .cfg-checkbox-opt .cfg-img-wrap {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-checkbox-opt .cfg-img-wrap svg { color: #9ca3af; transition: color 0.3s ease; }
.lenos-cfg .cfg-checkbox-opt:hover .cfg-img-wrap svg,
.lenos-cfg .cfg-checkbox-opt.selected .cfg-img-wrap svg { color: #018837; }
.lenos-cfg .cfg-checkbox-opt.selected .cfg-img-wrap { background: #e8f5e9; }
.lenos-cfg .cfg-checkbox-opt .chk-content { flex: 1; }
.lenos-cfg .cfg-checkbox-opt .chk-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 15px;
}
.lenos-cfg .cfg-checkbox-opt.selected .chk-name { color: #018837; }
.lenos-cfg .cfg-checkbox-opt .chk-desc { font-size: 13px; color: #6b7280; margin-top: 4px; line-height: 1.4; }
.lenos-cfg .cfg-checkbox-opt .chk-box {
    width: 26px; height: 26px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #fff;
}
.lenos-cfg .cfg-checkbox-opt:hover .chk-box { border-color: #018837; }
.lenos-cfg .cfg-checkbox-opt.selected .chk-box {
    background: #018837;
    border-color: #018837;
}
.lenos-cfg .cfg-checkbox-opt .chk-box svg { width: 14px; height: 14px; color: #fff; display: none; }
.lenos-cfg .cfg-checkbox-opt.selected .chk-box svg { display: block; }

/* ========== DALLE HAUTEUR ========== */
.lenos-cfg .cfg-dalle-hauteur { display: none; margin-top: 16px; }
.lenos-cfg .cfg-dalle-hauteur.visible { display: block; }
.lenos-cfg .cfg-dalle-opts { display: flex; gap: 12px; justify-content: center; }
.lenos-cfg .cfg-dalle-opt {
    padding: 12px 28px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    transition: all 0.3s ease;
    background: #fff;
}
.lenos-cfg .cfg-dalle-opt:hover { border-color: #018837; }
.lenos-cfg .cfg-dalle-opt.selected {
    border-color: #018837;
    background: #f8fdf9;
    color: #018837;
}

/* ========== NSP CHECKBOX ========== */
.lenos-cfg .cfg-nsp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s ease;
}
.lenos-cfg .cfg-nsp:hover { background: #f3f4f6; }
.lenos-cfg .cfg-nsp input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: #018837;
    cursor: pointer;
}
.lenos-cfg .cfg-nsp:has(input:checked) { color: #018837; background: #f0fdf4; }

/* ========== NOTIFICATIONS ========== */
.lenos-cfg .cfg-notif {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fef3c7;
    border-radius: 10px;
    font-size: 13px;
    color: #92400e;
    margin-top: 16px;
    max-width: 420px;
}
.lenos-cfg .cfg-notif.visible { display: flex; }
.lenos-cfg .cfg-notif svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
}
.lenos-cfg .cfg-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}
.lenos-cfg .cfg-error.visible { display: block; }

/* ========== FORM ========== */
.lenos-cfg .cfg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
}
.lenos-cfg .cfg-form-group {
    display: flex;
    flex-direction: column;
}
.lenos-cfg .cfg-form-group.full { grid-column: 1 / -1; }
.lenos-cfg .cfg-form-group label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.lenos-cfg .cfg-form-group label .req { color: #ef4444; }
.lenos-cfg .cfg-form-group input,
.lenos-cfg .cfg-form-group textarea {
    padding: 14px 16px;
    font-size: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}
.lenos-cfg .cfg-form-group input:focus,
.lenos-cfg .cfg-form-group textarea:focus {
    outline: none;
    border-color: #018837;
}
.lenos-cfg .cfg-form-group input.error {
    border-color: #ef4444;
}
.lenos-cfg .cfg-form-group textarea { resize: vertical; min-height: 100px; line-height: 1.5; }

/* ========== FILE UPLOAD ========== */
.lenos-cfg .cfg-file-zone {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: #f9fafb;
    max-width: 480px;
}
.lenos-cfg .cfg-file-zone:hover {
    border-color: #018837;
}
.lenos-cfg .cfg-file-zone svg {
    width: 40px; height: 40px;
    color: #9ca3af;
    margin-bottom: 12px;
}
.lenos-cfg .cfg-file-zone p { color: #6b7280; font-size: 14px; }
.lenos-cfg .cfg-file-zone span { color: #018837; font-weight: 600; }
.lenos-cfg .cfg-file-list { margin-top: 14px; max-width: 480px; }
.lenos-cfg .cfg-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 13px;
}
.lenos-cfg .cfg-file-item button {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}

/* ========== RECAP ========== */
.lenos-cfg .cfg-recap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.lenos-cfg .cfg-recap-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lenos-cfg .cfg-recap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
    border-radius: 20px;
    padding: 50px 36px;
    min-height: 280px;
    border: 2px solid #a7f3d0;
    position: relative;
    overflow: hidden;
}
.lenos-cfg .cfg-recap-img::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(1,136,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lenos-cfg .cfg-recap-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #018837, #10b981, #018837);
}
.lenos-cfg .cfg-recap-img svg {
    color: #018837;
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 12px rgba(1,136,55,0.2));
}
.lenos-cfg .cfg-recap-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #018837;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lenos-cfg .cfg-recap-bubbles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.lenos-cfg .cfg-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 14px;
    transition: all 0.3s ease;
}
.lenos-cfg .cfg-bubble:hover {
    border-color: #018837;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1,136,55,0.1);
}
.lenos-cfg .cfg-bubble.hidden { display: none; }
.lenos-cfg .cfg-bubble .bubble-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lenos-cfg .cfg-bubble .bubble-img-wrap svg {
    color: #018837;
    width: 36px;
    height: 36px;
}
.lenos-cfg .cfg-bubble-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}
.lenos-cfg .cfg-bubble-value {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.3;
}
.lenos-cfg .cfg-recap-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lenos-cfg .cfg-recap-section {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}
.lenos-cfg .cfg-recap-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #018837;
}
.lenos-cfg .cfg-recap-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}
.lenos-cfg .cfg-recap-row:last-child { border-bottom: none; }
.lenos-cfg .cfg-recap-row .rlabel { color: #6b7280; }
.lenos-cfg .cfg-recap-row .rvalue { font-weight: 600; color: #374151; }

/* ========== RGPD ========== */
.lenos-cfg .cfg-rgpd {
    background: #f9fafb;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.lenos-cfg .cfg-rgpd label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1.5;
}
.lenos-cfg .cfg-rgpd input {
    width: 20px;
    height: 20px;
    accent-color: #018837;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}
.lenos-cfg .cfg-rgpd a {
    color: #018837;
    text-decoration: underline;
}

/* ========== FOOTER & BUTTONS ========== */
.lenos-cfg .cfg-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.lenos-cfg .cfg-back-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.lenos-cfg .cfg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.lenos-cfg .cfg-btn-back {
    background: #fff;
    color: #374151;
    border: 2px solid #d1d5db;
}
.lenos-cfg .cfg-btn-back:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}
.lenos-cfg .cfg-btn-next {
    background: #018837;
    color: #fff;
}
.lenos-cfg .cfg-btn-next:hover {
    background: #016d2c;
}
.lenos-cfg .cfg-btn-next:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.lenos-cfg .cfg-btn svg {
    width: 16px;
    height: 16px;
}

/* ========== STEPS ANIMATED ========== */
.lenos-cfg .cfg-step {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeInUp 0.6s ease-out;
}
.lenos-cfg .cfg-step.active { display: flex; }

/* ========== SUCCESS ========== */
.lenos-cfg .cfg-success {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.lenos-cfg .cfg-success.visible { display: block; }
.lenos-cfg .cfg-success-particles { display: none; }
.lenos-cfg .cfg-success-icon {
    width: 90px;
    height: 90px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.lenos-cfg .cfg-success-icon svg {
    width: 45px;
    height: 45px;
    color: #018837;
}
.lenos-cfg .cfg-success h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.lenos-cfg .cfg-success h2 span { color: #018837; }
.lenos-cfg .cfg-success p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}
.lenos-cfg .cfg-success-extra {
    margin-top: 32px;
}
.lenos-cfg .cfg-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #018837;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.lenos-cfg .cfg-success-btn:hover {
    background: #016d2c;
}

/* ========== RESPONSIVE PREMIUM ========== */
@media (max-width: 900px) {
    .lenos-cfg .cfg-products { grid-template-columns: repeat(2, 1fr); }
    .lenos-cfg .cfg-stepper-label { display: none; }
    .lenos-cfg .cfg-recap { grid-template-columns: 1fr; gap: 24px; }
    .lenos-cfg .cfg-recap-left { animation-delay: 0s; }
    .lenos-cfg .cfg-recap-right { animation-delay: 0.1s; }
    .lenos-cfg .cfg-recap-img { min-height: 240px; }
    .lenos-cfg .cfg-recap-bubbles { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
    .lenos-cfg { padding: 160px 16px 40px; }
    .lenos-cfg .cfg-title { font-size: 28px; margin-bottom: 35px; }
    .lenos-cfg .cfg-substep-progress { margin-bottom: 30px; }
    .lenos-cfg .cfg-substep-bar { width: 150px; }
    .lenos-cfg .cfg-btn-continue { width: 100%; }
    .lenos-cfg .cfg-products { gap: 14px; }
    .lenos-cfg .cfg-card {
        padding: 22px 16px;
        border-radius: 16px;
    }
    .lenos-cfg .cfg-card:hover { transform: translateY(-4px); }
    .lenos-cfg .cfg-form-grid { grid-template-columns: 1fr; gap: 18px; }
    .lenos-cfg .cfg-footer {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .lenos-cfg .cfg-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
    .lenos-cfg .cfg-stepper-item {
        padding: 10px 16px;
    }
    .lenos-cfg .cfg-stepper-num { width: 34px; height: 34px; font-size: 14px; }
    .lenos-cfg .cfg-stepper-line { width: 35px; }
    .lenos-cfg .cfg-pose-opts { grid-template-columns: 1fr; max-width: 280px; }
    .lenos-cfg .cfg-checkbox-opt { flex-wrap: wrap; justify-content: center; text-align: center; }
    .lenos-cfg .cfg-success-icon { width: 90px; height: 90px; }
    .lenos-cfg .cfg-success-icon svg { width: 45px; height: 45px; }
    .lenos-cfg .cfg-recap-img { min-height: 220px; padding: 44px 28px; }
    .lenos-cfg .cfg-recap-bubbles { gap: 12px; }
    .lenos-cfg .cfg-bubble { padding: 18px 12px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap { width: 60px; height: 60px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap svg { width: 30px; height: 30px; }
}
@media (max-width: 500px) {
    .lenos-cfg { padding: 140px 12px 30px; }
    .lenos-cfg::before { height: 300px; }
    .lenos-cfg .cfg-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .lenos-cfg .cfg-stepper { margin-bottom: 35px; }
    .lenos-cfg .cfg-products { grid-template-columns: 1fr 1fr; gap: 10px; }
    .lenos-cfg .cfg-card {
        padding: 16px 12px;
        border-radius: 14px;
    }
    .lenos-cfg .cfg-card-img {
        height: 65px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    .lenos-cfg .cfg-card-img svg { width: 40px; height: 40px; }
    .lenos-cfg .cfg-card-name { font-size: 13px; margin-bottom: 4px; }
    .lenos-cfg .cfg-card-desc { display: none; }
    .lenos-cfg .cfg-card.selected { transform: translateY(-4px) scale(1.01); }
    .lenos-cfg .cfg-visual-opt {
        width: 120px;
        min-height: 140px;
        padding: 14px 10px;
        border-radius: 14px;
    }
    .lenos-cfg .cfg-visual-opt .cfg-img-wrap { height: 80px; border-radius: 10px; }
    .lenos-cfg .cfg-color-opt { padding: 12px 16px; }
    .lenos-cfg .cfg-swatch { width: 40px; height: 40px; }
    .lenos-cfg .cfg-height-opt { padding: 14px 20px; min-width: 85px; }
    .lenos-cfg .cfg-height-opt .h-value { font-size: 17px; }
    .lenos-cfg .cfg-stepper-item { padding: 8px 12px; }
    .lenos-cfg .cfg-stepper-num { width: 28px; height: 28px; font-size: 12px; }
    .lenos-cfg .cfg-stepper-line { width: 20px; height: 3px; }
    .lenos-cfg .cfg-section-title { font-size: 15px; }
    .lenos-cfg .cfg-file-zone { padding: 30px 20px; }
    .lenos-cfg .cfg-recap-section { padding: 18px; }
    .lenos-cfg .cfg-recap-bubbles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .lenos-cfg .cfg-bubble { padding: 16px 10px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap { width: 56px; height: 56px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap svg { width: 28px; height: 28px; }
    .lenos-cfg .cfg-bubble-label { font-size: 9px; }
    .lenos-cfg .cfg-bubble-value { font-size: 12px; }
    .lenos-cfg .cfg-recap-img { min-height: 200px; padding: 36px 20px; }
    .lenos-cfg .cfg-recap-img svg { width: 80px; height: 80px; }
    .lenos-cfg .cfg-recap-product-badge { font-size: 10px; padding: 5px 12px; }
    .lenos-cfg .cfg-success { padding: 60px 16px; }
    .lenos-cfg .cfg-success h2 { font-size: 28px; }
    .lenos-cfg .cfg-success p { font-size: 15px; }
}
@media (max-width: 380px) {
    .lenos-cfg .cfg-products { grid-template-columns: 1fr; gap: 12px; }
    .lenos-cfg .cfg-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        text-align: left;
    }
    .lenos-cfg .cfg-card-img {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-bottom: 0;
    }
    .lenos-cfg .cfg-card-img svg { width: 32px; height: 32px; }
    .lenos-cfg .cfg-card-name { margin-bottom: 2px; }
    .lenos-cfg .cfg-card-desc { display: block; font-size: 12px; }
    .lenos-cfg .cfg-recap-bubbles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lenos-cfg .cfg-bubble { padding: 14px 8px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap { width: 50px; height: 50px; }
    .lenos-cfg .cfg-bubble .bubble-img-wrap svg { width: 24px; height: 24px; }
    .lenos-cfg .cfg-recap-img { min-height: 180px; padding: 32px 16px; border-radius: 16px; }
    .lenos-cfg .cfg-recap-img svg { width: 70px; height: 70px; }
    .lenos-cfg .cfg-recap-product-badge { top: 12px; left: 12px; font-size: 9px; padding: 4px 10px; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    .lenos-cfg *,
    .lenos-cfg *::before,
    .lenos-cfg *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Sous-titre "Hauteur" et bloc adresse de l'étape coordonnées */
.lenos-cfg .cfg-section-title--sub {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.lenos-cfg .cfg-section--spaced {
  margin-top: 28px;
}
