/* =========================================
   4. SERVICES (PREMIUM CARDS)
   ========================================= */
.premium-header {
    height: 50vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: #050505; position: relative; border-bottom: 1px solid #1a1a1a;
}
.header-subtitle { color: #888; margin-top: 10px; letter-spacing: 1px; }

.services-wrapper { padding-top: 80px; padding-bottom: 100px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 120px; }

.service-card-premium {
    background: #0a0a0a; border: 1px solid #1a1a1a; padding: 40px 30px;
    position: relative; transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex; flex-direction: column;
}
.service-card-premium:hover { border-color: var(--accent); transform: translateY(-10px); }
.service-card-premium.featured { background: #0e0e0e; border-color: #333; }
.badge-pop {
    position: absolute; top: 0; right: 0; background: var(--accent); color: #fff;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 5px 15px; letter-spacing: 1px;
}

.card-header { margin-bottom: 30px; }
.service-num {
    display: block; font-family: var(--font-h); font-size: 4rem; color: #1a1a1a;
    line-height: 1; font-weight: 800; margin-bottom: -20px; position: relative; z-index: 0;
}
.service-title {
    font-family: var(--font-h); font-size: 1.8rem; color: #fff;
    line-height: 1.1; text-transform: uppercase; position: relative; z-index: 1;
}

.price-tag { margin-bottom: 30px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.price-tag .from { display: block; font-size: 0.75rem; color: #666; text-transform: uppercase; margin-bottom: 5px; }
.price-tag .amount { font-size: 1.8rem; font-weight: 700; color: var(--accent); }

.service-specs { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.service-specs li {
    display: flex; justify-content: space-between; margin-bottom: 15px;
    font-size: 0.9rem; border-bottom: 1px solid #111; padding-bottom: 10px;
}
.service-specs li span { color: #555; }
.service-specs li strong { color: #ccc; text-align: right; font-weight: 500; }
.full-width { width: 100%; text-align: center; }

/* PROCESS */
.process-section { max-width: 1000px; margin: 0 auto; }
.process-steps { display: flex; align-items: flex-start; justify-content: space-between; }
.step-item { text-align: center; flex: 1; padding: 0 20px; }
.step-icon svg { width: 40px; height: 40px; stroke: var(--accent); margin-bottom: 20px; }
.step-item h4 { color: #fff; font-family: var(--font-h); text-transform: uppercase; margin-bottom: 10px; font-size: 1.2rem; }
.step-item p { color: #888; font-size: 0.9rem; line-height: 1.5; }
.step-line { width: 100px; height: 1px; background: #222; margin-top: 20px; }

/* RESPONSIVE SWIPE (MOBILE) */
@media (max-width: 768px) {
    .services-grid {
        display: flex; grid-template-columns: none; overflow-x: auto;
        scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 40px;
        margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .service-card-premium {
        min-width: 85vw; scroll-snap-align: center; margin-bottom: 0; opacity: 1; transform: scale(1);
    }
    .process-steps { flex-direction: column; gap: 40px; }
    .step-line { display: none; }
}