/* tarifs.css - Styles pour la page des tarifs */

.tarifs-hero { 
    padding: 160px 0 80px; 
    background: radial-gradient(circle at top right, var(--primary-light) 0%, var(--bg-alt) 60%);
    position: relative;
    overflow: hidden;
}

.tarifs-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.tarifs-hero h1 { 
    font-size: clamp(34px, 5vw, 56px); 
    font-weight: var(--weight-extra); 
    color: var(--primary-dark); 
    letter-spacing: -2px;
    line-height: 1;
}

.tarifs-hero h1 span {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.tarifs-hero-subtitle {
    font-size: 20px;
    font-weight: var(--weight-medium);
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.tarifs-hero-text { 
    font-size: 18px; 
    color: var(--text-muted); 
    line-height: 1.6;
    font-weight: var(--weight-normal);
    margin-bottom: 30px;
}

.tarifs-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
}
.tarifs-price-gross {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
}
.tarifs-price-net {
    font-size: 48px;
    font-weight: var(--weight-black);
    color: var(--primary-dark);
    display: block;
    line-height: 1.1;
}
.tarifs-price-note {
    font-size: 14px;
    color: var(--text-muted);
}
.tarifs-hero-visual {
    display: flex;
    justify-content: center;
}
.tarifs-img-placeholder {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    background: var(--primary-light);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}
.tarifs-img-placeholder.hero-img-raw {
    background: transparent;
    border: none;
    box-shadow: none;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.tarifs-real-cost {
    padding: 80px 0;
    background: var(--bg-alt);
}
.tarifs-real-cost-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
}
.tarifs-sap-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--surface);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: var(--weight-bold);
    margin-bottom: 16px;
}

.tarifs-included {
    padding: 80px 0;
    background: var(--primary-light);
}
.tarifs-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tarifs-included-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}
.tarifs-included-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}
.tarifs-included-card h3 {
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.tarifs-included-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.tarifs-sap-steps {
    padding: 80px 0;
    background: var(--bg-alt);
}
.tarifs-sap-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tarifs-sap-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-subtle);
}
.tarifs-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-black);
    font-size: 20px;
}
.tarifs-sap-step strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: 17px;
}
.tarifs-sap-step p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.tarifs-comparison {
    padding: 80px 0;
    background: var(--primary-light);
}
.tarifs-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tarifs-comparison-card {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}
.tarifs-comparison-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-blue);
}
.tarifs-comparison-card h3 {
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.tarifs-comparison-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.tarifs-cta {
    padding: 80px 0;
    background: var(--bg-alt);
}

@media (max-width: 1024px) {
    .tarifs-hero { padding: 130px 0 60px; }
    .tarifs-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .tarifs-hero::before { margin: 0 auto 24px; }
    .tarifs-price-block { align-items: center; }
    .tarifs-hero-visual { justify-content: center; margin-top: 32px; }
    .tarifs-included-grid { grid-template-columns: 1fr; }
    .tarifs-sap-steps-grid { grid-template-columns: 1fr; }
    .tarifs-comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .tarifs-hero { padding: 120px 0 40px; }
    .tarifs-real-cost, .tarifs-included, .tarifs-sap-steps, .tarifs-comparison, .tarifs-cta { padding: 50px 0; }
    .tarifs-price-net { font-size: 40px; }
    .tarifs-real-cost-card { padding: 24px; }
}
