/* ===================================
   PROTOCOLE RADICAL - PAGE AVIS
   Colors: #000 (black), #FFF (white), #CCFF00 (yellow-green)
   Font: Inter
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #FFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #CCFF00;
}

/* ===================================
   HEADER
   =================================== */
.header {
    background-color: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #CCFF00;
}

.btn-reserve {
    background-color: #CCFF00;
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-reserve:hover {
    background-color: #b8e600;
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(204, 255, 0, 0.1);
    border: 1px solid #CCFF00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
}

.badge-icon {
    color: #CCFF00;
    font-weight: 700;
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #CCFF00;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #808080;
    font-weight: 500;
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    letter-spacing: -1px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: #CCFF00;
    transform: translateY(-5px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(204, 255, 0, 0.1);
    border: 2px solid #CCFF00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #CCFF00;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-card p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
}

/* ===================================
   BEFORE/AFTER SECTION
   =================================== */
.before-after-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.transformation-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.transformation-card:hover {
    border-color: #CCFF00;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
}

.transformation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transformation-card:hover .transformation-overlay {
    opacity: 1;
}

.transformation-badge {
    background-color: #CCFF00;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.transformation-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.transformation-text {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.transformation-text strong {
    color: #CCFF00;
    font-weight: 700;
}

.btn-transformation {
    display: inline-block;
    background-color: #CCFF00;
    color: #000;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-transformation:hover {
    background-color: #b8e600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #808080;
    margin-top: -40px;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #CCFF00;
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #CCFF00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.author-title {
    font-size: 13px;
    color: #808080;
}

.review-stars {
    color: #CCFF00;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #CCFF00;
}

.faq-question {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #CCFF00;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    background-color: #CCFF00;
    color: #000;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: #b8e600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: #808080;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #808080;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #CCFF00;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    font-size: 14px;
    color: #606060;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .trust-grid,
    .reviews-grid,
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .trust-grid,
    .reviews-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .trust-card,
    .review-card,
    .faq-item {
        padding: 24px;
    }
}