/* =============================================
   Prestations Page - Modern Redesign
   ============================================= */

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B8962E;
    background: rgba(184, 150, 46, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Prestations Container */
.prestations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Offer Cards Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.offers-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .offers-grid.three-cols {
        grid-template-columns: 1fr;
    }
}

/* Offer Card */
.offer-card-v2 {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.offer-card-v2.featured {
    border: 2px solid #B8962E;
    box-shadow: 0 10px 30px rgba(184, 150, 46, 0.15);
}

.offer-card-v2 .badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card-v2.featured .badge {
    background: linear-gradient(135deg, #B8962E 0%, #D4AF37 100%);
    color: #000;
}

.offer-card-v2 .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 150, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-card-v2 .card-icon i {
    font-size: 1.25rem;
    color: #B8962E;
}

.offer-card-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.offer-card-v2 .target {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    font-style: italic;
}

.offer-card-v2 .description {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-card-v2 .features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.offer-card-v2 .features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.offer-card-v2 .features li:last-child {
    border-bottom: none;
}

.offer-card-v2 .features li .check {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.offer-card-v2 .price-block {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: auto;
    text-align: center;
}

.offer-card-v2 .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 16px;
}

.offer-card-v2 .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
}

.offer-card-v2 .btn-offer {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offer-card-v2 .btn-offer.primary {
    background: #1a1a1a;
    color: #fff;
}

.offer-card-v2 .btn-offer.primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.offer-card-v2 .btn-offer.secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

.offer-card-v2 .btn-offer.secondary:hover {
    background: #f9fafb;
    border-color: #1a1a1a;
}

/* Process Section */
.process-section {
    background: #f8fafc;
    padding: 80px 0;
    margin: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.process-card .step-number {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
}

.process-card .icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    margin-top: 8px;
}

.process-card .icon-wrapper i {
    color: #B8962E;
    font-size: 1.25rem;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.process-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    font-size: 0.875rem;
}

.comparison-table thead th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

.comparison-table thead th.highlight {
    background: #B8962E;
    color: #000;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
}

.comparison-table tbody td.highlight {
    background: rgba(184, 150, 46, 0.08);
}

.comparison-table .icon-yes {
    color: #10b981;
    font-weight: 700;
}

.comparison-table .icon-no {
    color: #ef4444;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section h2 span {
    color: #D4AF37;
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 28px;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #D4AF37;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-section .btn-cta:hover {
    background: #e5c349;
    transform: translateY(-2px);
}

.cta-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-section .trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cta-section .trust-badges i {
    color: #D4AF37;
}

/* FAQ Section */
.faq-section-v2 {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .faq-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.faq-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.faq-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background: #fff;
}

.testimonials-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .testimonials-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.testimonial-card-v2 {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.testimonial-card-v2 .quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: rgba(184, 150, 46, 0.15);
    font-family: Georgia, serif;
}

.testimonial-card-v2 .content {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card-v2 .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card-v2 .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 150, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #B8962E;
}

.testimonial-card-v2 .author-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.testimonial-card-v2 .author-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.testimonial-card-v2 .stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-card-v2 .stat {
    text-align: center;
    flex: 1;
}

.testimonial-card-v2 .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
    display: block;
}

.testimonial-card-v2 .stat-label {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Banner Promo */
.promo-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.promo-banner .promo-content {
    flex: 1;
    min-width: 280px;
}

.promo-banner .promo-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-banner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.promo-banner h3 i {
    color: #D4AF37;
    margin-right: 8px;
}

.promo-banner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.promo-banner .btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #D4AF37;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.promo-banner .btn-promo:hover {
    background: #e5c349;
}

@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

/* Special Offer Banner */
.special-offer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 40px;
    text-align: center;
}

.special-offer .offer-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.special-offer h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.special-offer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.special-offer strong {
    color: #D4AF37;
}
