/* ============================================
   Service Pages — Voxr Luxury Theme
   Diamond · Gold · Silver Tiers
   ============================================ */

/* Tier Colors */
:root {
    --diamond: #67e8f9;
    --diamond-glow: rgba(103,232,249,0.2);
    --gold: #f59e0b;
    --gold-glow: rgba(245,158,11,0.2);
    --silver: #94a3b8;
    --silver-glow: rgba(148,163,184,0.15);
}

/* Hero */
.sp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    z-index: 10;
}

/* Hero spotlight behind heading */
.sp-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(168,85,247,0.22) 0%,
        rgba(99,102,241,0.10) 45%,
        transparent 75%);
    pointer-events: none;
    z-index: -1;
}

/* Sections */
.sp-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

/* 3-Column Grid */
.sp-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Feature Cards */
.sp-feature {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    text-align: left;
}

.sp-feature:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(168,85,247,0.25);
    transform: translateY(-4px);
}

.sp-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Package Cards ── */
.sp-package {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    position: relative;
    overflow: hidden;
}

/* Silver */
.sp-package.tier-silver {
    border-color: rgba(148,163,184,0.28);
    background: rgba(148,163,184,0.04);
}
.sp-package.tier-silver:hover {
    border-color: rgba(148,163,184,0.6);
    box-shadow: 0 0 50px rgba(148,163,184,0.14), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}
.sp-package.tier-silver::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

/* Gold */
.sp-package.tier-gold {
    border-color: rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.06);
}
.sp-package.tier-gold:hover {
    border-color: rgba(245,158,11,0.7);
    box-shadow: 0 0 60px rgba(245,158,11,0.18), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}
.sp-package.tier-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Diamond */
.sp-package.tier-diamond {
    border-color: rgba(103,232,249,0.35);
    background: rgba(103,232,249,0.05);
}
.sp-package.tier-diamond:hover {
    border-color: rgba(103,232,249,0.7);
    box-shadow: 0 0 70px rgba(103,232,249,0.20), 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}
.sp-package.tier-diamond::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--diamond), transparent);
}

/* Tier Badge */
.sp-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.sp-tier-badge.silver { background: rgba(148,163,184,0.15); color: #cbd5e1; border: 1px solid rgba(148,163,184,0.4); box-shadow: 0 0 12px rgba(148,163,184,0.12); }
.sp-tier-badge.gold   { background: rgba(245,158,11,0.15);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.45); box-shadow: 0 0 14px rgba(245,158,11,0.18); }
.sp-tier-badge.diamond{ background: rgba(103,232,249,0.15); color: #a5f3fc; border: 1px solid rgba(103,232,249,0.45); box-shadow: 0 0 16px rgba(103,232,249,0.20); }

/* Tier icon dot */
.sp-tier-badge::before {
    content: '◆';
    font-size: 0.6rem;
}

/* Price */
.sp-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0.5rem 0 0.25rem;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}

.sp-price-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: #52525b;
}

.sp-market-note {
    text-align: center;
    font-size: 0.82rem;
    color: #3f3f46;
    margin: 0 auto 2.5rem auto;
    letter-spacing: 0.02em;
}

/* Package Name */
.sp-package h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Checklist */
.sp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.sp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #d1d5db;
    font-size: 0.92rem;
    line-height: 1.5;
}

.sp-list li i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-list li i.silver-check { color: var(--silver); }
.sp-list li i.gold-check   { color: var(--gold); }
.sp-list li i.diamond-check{ color: var(--diamond); }
.sp-list li i.default-check{ color: #a855f7; }

/* Package Buttons */
.btn-silver {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: rgba(148,163,184,0.1);
    border: 1px solid rgba(148,163,184,0.4);
    color: #cbd5e1;
    transition: all 0.3s ease;
}
.btn-silver:hover { background: rgba(148,163,184,0.22); border-color: #94a3b8; transform: translateY(-2px); box-shadow: 0 0 20px rgba(148,163,184,0.2); }

.btn-gold {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.07));
    border: 1px solid rgba(245,158,11,0.5);
    color: #fcd34d;
    transition: all 0.3s ease;
}
.btn-gold:hover { background: rgba(245,158,11,0.28); border-color: #f59e0b; transform: translateY(-2px); box-shadow: 0 0 24px rgba(245,158,11,0.25); }

.btn-diamond {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(103,232,249,0.18), rgba(103,232,249,0.07));
    border: 1px solid rgba(103,232,249,0.5);
    color: #a5f3fc;
    transition: all 0.3s ease;
}
.btn-diamond:hover { background: rgba(103,232,249,0.28); border-color: #67e8f9; transform: translateY(-2px); box-shadow: 0 0 28px rgba(103,232,249,0.30); }

/* Process Steps */
.sp-process { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; text-align: left; }

.sp-step { display: flex; align-items: flex-start; gap: 1.5rem; }

.sp-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

.sp-step h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.sp-step p { margin: 0; font-size: 0.95rem; }

/* FAQ */
.sp-faq { display: flex; flex-direction: column; gap: 1rem; }

.sp-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.sp-faq-item:hover {
    border-color: rgba(168,85,247,0.35);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 30px rgba(168,85,247,0.08);
}

.sp-faq-item h3 { font-size: 1rem; margin-bottom: 0.6rem; color: #f4f4f5; }
.sp-faq-item p { margin: 0; font-size: 0.92rem; color: #d1d5db; }

/* CTA Section */
.sp-cta {
    position: relative; z-index: 10;
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.04));
}
.sp-cta h2 { text-align: center; margin-bottom: 1rem; }
.sp-cta p  { text-align: center; margin: 0 auto 2.5rem; font-size: 1.1rem; }

/* Deliverables Banner */
.sp-deliverables {
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(168,85,247,0.10);
}

.sp-deliverables-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #c084fc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 6px rgba(168,85,247,0.4));
}

.sp-deliverable-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #e4e4e7;
    font-size: 0.88rem;
}

.sp-deliverable-item i { color: #c084fc; font-size: 1rem; filter: drop-shadow(0 0 4px rgba(168,85,247,0.5)); }

/* Contract Terms */
.sp-terms {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.sp-terms h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }

.sp-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.sp-term-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.sp-term-item i { font-size: 1.3rem; color: #a855f7; margin-top: 2px; flex-shrink: 0; }
.sp-term-item p { font-size: 0.9rem; margin: 0; color: #d1d5db; }
.sp-term-item strong { display: block; color: #f4f4f5; font-size: 0.85rem; margin-bottom: 0.2rem; }

/* Mobile */
@media (max-width: 768px) {
    .sp-hero { padding: 8rem 1.5rem 4rem; }
    .sp-section { padding: 4rem 0; }
    .sp-step { flex-direction: column; gap: 0.75rem; }
    .sp-package { padding: 2rem 1.5rem; }
    .sp-faq-item { padding: 1.25rem 1.5rem; }
    .sp-cta { padding: 5rem 1.5rem; }
    .sp-terms { padding: 1.75rem; }
}
