/* ========================================
   LOCKLEAD - Page Tarifs (pricing.php)
   Extrait du bloc <style> inline
   ======================================== */

.pricing-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 18px;
    color: #64748b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Carte de prix */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #e85d04;
}

.pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e85d04;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.pricing-card h2 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 8px;
}

.pricing-card .subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}

.price-display {
    margin-bottom: 24px;
}

.price-main {
    font-size: 48px;
    font-weight: 800;
    color: #1a365d;
}

.price-main span {
    font-size: 18px;
    font-weight: 500;
    color: #64748b;
}

.price-details {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #334155;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    width: 22px;
    height: 22px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: #e85d04;
    color: white;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-pricing:hover {
    background: #c44d03;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #64748b;
}

.login-link a {
    color: #e85d04;
    font-weight: 500;
}

/* Calculateur */
.calculator-card {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
}

.calculator-card h2 {
    color: white;
}

.calculator-card .subtitle {
    color: #94a3b8;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.calc-input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.calc-input-group input:focus {
    outline: none;
    border-color: #e85d04;
    background: rgba(255,255,255,0.15);
}

.calc-input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.calc-results {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 20px;
}

.calc-result-item:last-child {
    border-bottom: none;
}

.calc-result-item .label {
    font-size: 14px;
    color: #94a3b8;
}

.calc-result-item .value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.calc-result-item .value.negative {
    color: #f87171;
}

.calc-result-item .value.positive {
    color: #4ade80;
}

.calc-result-item.highlight {
    background: rgba(232, 93, 4, 0.2);
    margin: 0 -20px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
}

.calc-result-item.highlight-top {
    margin: 12px -20px 0 -20px;
    border-radius: 0;
}

.calc-result-item.highlight .label {
    color: white;
    font-weight: 600;
}

.calc-result-item.highlight .value {
    font-size: 20px;
    color: #4ade80;
}

/* Garantie */
.guarantee {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #fffbeb;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.guarantee h3 {
    color: #92400e;
    font-size: 18px;
    margin-bottom: 8px;
}

.guarantee p {
    color: #a16207;
    font-size: 14px;
    margin: 0;
}

/* Variantes (remplace style="" inline) */
.guarantee--data { margin-top: 20px; background: #f0fdf4; }
.guarantee--data p { color: #166534; }
