#fw-section-custom-html-a8bd0eb9-0e72-49db-9eab-47faa9827960 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}


#fw-section-custom-html-a52f9ea8-f185-454e-b8dd-ec0ecc6e00bf {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}








#fw-section-custom-html-650dcaf5-23c7-4f19-9581-6990bde7e057 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}
#fw-section-custom-html-69114b34-c4dc-4f6e-af0b-98689e24e660 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-custom-html-5cbf7ce0-02d0-4242-8181-98a79eec903e {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-custom-html-0d73a3a7-a76b-4cbb-a1f7-e935102b3e49 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}








#fw-section-text-carousel-aa6fc894-282d-4e99-a55a-36f6090c0b51 {
--font-heading-scale: 0.7;
--font-body-scale: 1.0;
}


#fw-section-custom-html-91abc064-d371-45fc-8c62-70b667b309c3 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}


#fw-section-custom-html-a183ab54-9829-4893-bbdf-746867b900f4 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-text-carousel-a2949895-5d54-4257-9489-f7f241becc85 {
--font-heading-scale: 0.7;
--font-body-scale: 1.0;
}
#fw-section-hero-video-c2ab67dd-58d5-4b3d-84ae-dc893af29f0d {

.section-background__video{
  border-radius: 25px;
}
}
#fw-section-custom-html-a82122db-dcee-4038-ae50-9e6144cc3c58 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-custom-html-aba3016c-62a7-4801-b9a7-892bffd70ca6 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}


#fw-section-custom-html-d412fb4c-dda0-4eca-ac93-be333335b435 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}
#fw-section-custom-html-576cf2f8-7ddd-462a-a760-820f763e2f28 {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-custom-html-489e21fb-b3fd-4a9f-b9d3-7b3908001d2a {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}


#fw-section-custom-html-dd66fba9-6182-4d86-a52d-84d637bb2d5b {

section {
  padding-bottom: 0;
}
}
#fw-section-donations-1725094835 {

.donations__inner {
  padding: 0;
}
}




#fw-section-custom-html-84a6671f-9fee-4c53-9387-01ffa32b850c {

/* ========================================
   LCDR TOOLS - STYLES PARTAGÉS
   Profil Réfractaire + Calculateurs
   ======================================== */

/* RESET & VARIABLES */
.lcdr-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lcdr-container {
    --lcdr-primary: #2c5f2d;
    --lcdr-primary-dark: #1e4620;
    --lcdr-secondary: #7a5c45;
    --lcdr-success: #2c5f2d;
    --lcdr-warning: #d97706;
    --lcdr-danger: #dc2626;
    --lcdr-info: #2563eb;
    --lcdr-light: #f3f4f6;
    --lcdr-dark: #1f2937;
    --lcdr-border: #d1d5db;
    --lcdr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lcdr-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--lcdr-dark);
    line-height: 1.6;
}

/* PROGRESS BAR */
.lcdr-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--lcdr-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lcdr-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* HEADER */
.lcdr-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lcdr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* CARD */
.lcdr-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--lcdr-shadow-lg);
    border: 1px solid var(--lcdr-border);
    margin-bottom: 2rem;
}

/* FORM */
.lcdr-field {
    margin-bottom: 1.5rem;
}

.lcdr-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--lcdr-dark);
    font-size: 0.95rem;
}

.lcdr-input,
.lcdr-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
}

.lcdr-input:focus,
.lcdr-select:focus {
    outline: none;
    border-color: var(--lcdr-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.lcdr-range {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--lcdr-light);
    outline: none;
    -webkit-appearance: none;
}

.lcdr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
}

.lcdr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lcdr-primary);
    cursor: pointer;
    border: none;
}

/* CHECKBOXES */
.lcdr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lcdr-checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid var(--lcdr-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.lcdr-checkbox-label:hover {
    border-color: var(--lcdr-primary);
    background: #f9fafb;
}

.lcdr-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--lcdr-primary);
}

.lcdr-checkbox:checked + span {
    color: var(--lcdr-primary);
    font-weight: 600;
}

/* BUTTONS */
.lcdr-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.lcdr-btn-primary {
    background: var(--lcdr-primary);
    color: white;
}

.lcdr-btn-primary:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-secondary {
    background: var(--lcdr-light);
    color: var(--lcdr-dark);
    border: 2px solid var(--lcdr-border);
}

.lcdr-btn-secondary:hover {
    background: #e5e7eb;
}

.lcdr-btn-success {
    background: var(--lcdr-success);
    color: white;
}

.lcdr-btn-success:hover {
    background: var(--lcdr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-btn-full {
    width: 100%;
}

.lcdr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* NAVIGATION */
.lcdr-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lcdr-light);
}

/* RESULTS */
.lcdr-result-header {
    background: linear-gradient(135deg, var(--lcdr-primary), var(--lcdr-secondary));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.lcdr-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lcdr-result-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
}

.lcdr-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lcdr-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lcdr-light);
}

/* GRID */
.lcdr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.lcdr-grid-item {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lcdr-grid-item:hover {
    border-color: var(--lcdr-primary);
    transform: translateY(-2px);
    box-shadow: var(--lcdr-shadow-lg);
}

.lcdr-grid-item.completed {
    border-color: var(--lcdr-success);
    background: #f0fdf4;
}

.lcdr-grid-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcdr-grid-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.lcdr-grid-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lcdr-grid-title {
    font-weight: 600;
    color: var(--lcdr-dark);
    margin-bottom: 0.25rem;
}

.lcdr-grid-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* STATS */
.lcdr-stat-card {
    background: white;
    border: 2px solid var(--lcdr-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lcdr-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lcdr-primary);
    margin-bottom: 0.5rem;
}

.lcdr-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* ALERT */
.lcdr-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.lcdr-alert-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    color: #78350f;
}

.lcdr-alert-info {
    background: #dbeafe;
    border: 2px solid #60a5fa;
    color: #1e3a8a;
}

.lcdr-alert-success {
    background: #dcfce7;
    border: 2px solid #4ade80;
    color: #14532d;
}

.lcdr-alert-danger {
    background: #fee2e2;
    border: 2px solid #f87171;
    color: #7f1d1d;
}

/* LIST */
.lcdr-list {
    list-style: none;
    padding: 0;
}

.lcdr-list-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-list-item:last-child {
    border-bottom: none;
}

.lcdr-list-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* TABLE */
.lcdr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.lcdr-table th,
.lcdr-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--lcdr-border);
}

.lcdr-table th {
    background: var(--lcdr-light);
    font-weight: 600;
    color: var(--lcdr-dark);
}

.lcdr-table tr:hover {
    background: #f9fafb;
}

/* BADGE */
.lcdr-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lcdr-badge-success {
    background: #dcfce7;
    color: #166534;
}

.lcdr-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.lcdr-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.lcdr-badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* PROGRESS */
.lcdr-progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lcdr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.lcdr-progress-track {
    height: 24px;
    background: var(--lcdr-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.lcdr-progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--lcdr-primary), var(--lcdr-secondary));
    border-radius: 12px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes lcdr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcdr-fade-in {
    animation: lcdr-fadeIn 0.3s ease;
}

/* MODAL */
.lcdr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.lcdr-modal.active {
    display: flex;
}

.lcdr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--lcdr-shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .lcdr-container {
        padding: 0 0.5rem;
        margin: 1rem auto;
    }

    .lcdr-title {
        font-size: 1.5rem;
    }

    .lcdr-card {
        padding: 1.5rem;
    }

    .lcdr-nav {
        flex-direction: column;
    }

    .lcdr-grid {
        grid-template-columns: 1fr;
    }

    .lcdr-result-header {
        padding: 1.5rem;
    }

    .lcdr-result-title {
        font-size: 1.5rem;
    }

    .lcdr-table {
        font-size: 0.875rem;
    }

    .lcdr-table th,
    .lcdr-table td {
        padding: 0.5rem;
    }
}

}

#fw-section-hero-af31e0e7-9a80-420f-968f-f638cefef4fa {

.wrapper {
  height:100%;
}
.hero__content--center {
  height: 100%;
}
.hero__cta-container {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding-bottom: 2rem;
}

@media (max-width: 576px) {
  .hero__cta {
    scale: 0.85;
  }
  .hero__cta-container {
    padding-bottom: 0;
    transform: translateY(3rem);
  }
}

.svg{
  color: #f4c430;
}
}



#fw-section-recent-posts-a07bfee8-a0e6-4750-89f5-13205c561a31 {

.post-tile {
  background: #121a2b;
  border-color: rgba(244, 196, 48, 0.18);
}
}
#fw-section-hero-video-e3a5a4fd-4257-4e08-97b2-3a2569e5086d {

.section-background__video{
  border-radius: 25px;
}
}



#fw-section-app-memberships-a3127e {

.tiers__tier {
  background: #121a2b;
  border-color: rgba(244, 196, 48, 0.18);
}
.col-grid {
  grid-template-columns: repeat(4,1fr);
}
.tiers__tier-image {
  scale: 1.1;
}
}



#fw-section-custom-html-7199cac5-f4b5-4fa7-a287-464a9770360b {

div {
  position: relative;
  width: 100%;
}
img{
  border-radius: 15px;
  margin: auto;
}
p{
  position: absolute;
  top: 35%;
  left: 5%;
}
}


#fw-section-footer {

.footer__social-link{
  scale: 1.75;
  padding: 0 20px;
  color: #f4c430;
}
}
#fw-section-text-carousel-467eb228-3691-4e0b-aa23-13562397dfab {
--font-heading-scale: 0.7;
--font-body-scale: 0.7;
}
#fw-section-text-carousel-467eb228-3691-4e0b-aa23-13562397dfab {
--color-primary: #b30000;
--color-primary-rgb: 179, 0, 0;
--color-background: #f4c430;
--color-background-rgb: 244, 196, 48;
--color-on-background: #0e1621;
--color-on-background-rgb: 14, 22, 33;
--color-on-primary: #e9e2d6;
--color-on-primary-rgb: 233, 226, 214;
--color-product-image-background: #0e1621;
--color-background-brightness: 193;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #b30000;
--primary-btn-text: #e9e2d6;
--primary-btn-border-color: #0e1621;
--secondary-btn-bg: transparent;
--secondary-btn-text: #0e1621;
--secondary-btn-border-color: #0e1621;

}

#fw-section-header {

.header__size--sm {
  height: auto;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
svg {
  color: #f4c430;
}
}