/* Reviews / Experts page */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-banner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705 209%);
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    margin: 20px 0;
    box-sizing: border-box;
}

.hero-banner .hero-copy h1 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin: 0 0 8px;
}

.hero-banner .sub {
    opacity: .9;
    margin: 4px 0 12px;
}

.hero-banner .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px;
    padding: 0;
    list-style: none;
}

.hero-banner .badges li {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.hero-banner .cta {
    display: inline-block;
    background: #16dd00;
    color: #270648;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.hero-banner .hero-art {
    height: 220px;
    border-radius: 12px;
    background: radial-gradient(120px 120px at 30% 30%, #f59e0b55 0%, transparent 60%), radial-gradient(120px 120px at 70% 60%, #60a5fa55 0%, transparent 60%), linear-gradient(120deg, #141735, #0f1020);
}

.hero-banner .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Stats row */
.hero-stats {
    margin: 16px 0 24px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats li {
    background: #f6fff4;
    border: 1px solid #16dd00;
    border-radius: 12px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.stats .ic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #16dd00;
    color: #270648;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stats strong {
    display: block;
}

.stats small {
    color: #64748b;
}

.how-it-works {
    margin: 32px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step.card {
    background: #f6fff4;
    border: 1px solid #16dd00;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(10, 14, 35, .06);
    transition: transform .18s ease, box-shadow .18s ease;
    box-sizing: border-box;
}

.step.card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 26px rgba(10, 14, 35, .12);
}

.step.card .icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 8px;
    background: #16dd00;
    color: #270648;
}

.step.card .icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.experts {
    margin: 32px 0;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.expert-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #16dd00;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(10, 14, 35, .08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
    box-sizing: border-box;
}

.expert-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 28px rgba(10, 14, 35, .14);
}

.expert-card .thumb {
    background: linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705a3 209%);
    border-bottom: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 10px;
}

.expert-card .thumb img {
    max-height: 120px;
    width: auto;
    border-radius: 50%;
    max-width: 100%;
}

.expert-card .title {
    font-size: 18px;
    margin: 12px 14px 6px;
    color: #1E0445;
}

.expert-card .meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 14px 8px;
    color: #64748b;
}

.expert-card .meta .star {
    color: #f59e0b;
}

.expert-card .verdict {
    margin: 0 14px 12px;
    color: #334155;
}

.expert-card .btn {
    align-self: flex-start;
    margin: 0 14px 14px;
    padding: 10px 14px;
    background: #16dd00;
    color: #270648;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.why-matters,
.commitment {
    margin: 28px 0;
}

.faqs {
    margin: 28px 0;
}

.faq-list details {
    border: 1px solid #16dd00;
    border-radius: 12px;
    padding: 0;
    margin: 12px 0;
    background: #f6fff4;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 14, 35, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    position: relative;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    margin-left: auto;
    background: #16dd00;
    color: #270648;
    font-weight: 800;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 8px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details[open] {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(10, 14, 35, .12);
}

.faq-list details>p {
    padding: 0 16px 16px 16px;
    margin: 0;
}

/* Section heads */
.section-head {
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 40px !important;
}

/* Commitment gradient block */
.commitment {
    background: linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705 209%);
    color: #fff;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 10px 28px rgba(10, 14, 35, .18);
}

.commitment p {
    opacity: .95;
}

/* Mobile Responsive Fixes */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 20px;
        margin: 15px 0;
    }
    
    .steps,
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-head h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        width: 100%;
    }
    
    .hero-banner {
        padding: 16px;
        border-radius: 12px;
        margin: 10px 0;
    }
    
    .hero-banner .hero-art {
        height: 180px;
        order: -1;
    }
    
    .steps,
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step.card {
        padding: 14px;
    }
    
    .expert-card {
        margin-bottom: 0;
    }
    
    .section-head h2 {
        font-size: 28px !important;
        text-align: center;
    }
    
    .commitment {
        padding: 18px 14px;
        border-radius: 12px;
    }
    
    .faq-list summary {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .faq-list details>p {
        padding: 0 14px 14px 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-banner {
        padding: 14px;
        border-radius: 10px;
    }
    
    .hero-banner .hero-copy h1 {
        font-size: 24px;
    }
    
    .hero-banner .sub {
        font-size: 14px;
    }
    
    .hero-banner .cta {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .hero-banner .hero-art {
        height: 150px;
    }
    
    .step.card {
        padding: 12px;
    }
    
    .expert-card .thumb {
        height: 140px;
    }
    
    .expert-card .thumb img {
        max-height: 100px;
    }
    
    .expert-card .title {
        font-size: 16px;
        margin: 10px 12px 4px;
    }
    
    .expert-card .verdict {
        margin: 0 12px 10px;
        font-size: 14px;
    }
    
    .section-head h2 {
        font-size: 24px !important;
    }
    
    .commitment {
        padding: 16px 12px;
    }
    
    .faq-list summary {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Ensure no horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

.site-main {
    width: 100%;
    overflow-x: hidden;
}