.grid-5 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1rem; }
@media (min-width: 768px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }
.process-step { text-align: center; position: relative; }
.step-circle { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; z-index: 10; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
.step-line { display: none; }
@media (min-width: 768px) { 
    .step-line { display: block; position: absolute; top: 2rem; left: 60%; width: 80%; height: 1px; background: rgba(212,175,55,0.3); }
}
.reviews-scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.4) transparent; }
.reviews-scroller::-webkit-scrollbar { height: 6px; }
.reviews-scroller::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
.reviews-scroller::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.4); border-radius: 3px; }
.reviews-track { display: flex; gap: 1.5rem; }
.review-card-scroll { flex: 0 0 350px; scroll-snap-align: start; background: #000; border: 1px solid rgba(212,175,55,0.2); padding: 2rem; }
.review-card-scroll:hover { border-color: rgba(212,175,55,0.5); }
.review-card-scroll a { transition: opacity 0.2s; }
.review-card-scroll a:hover { opacity: 0.85; }
