/* ============================================================
   SERVICE PAGES — SHARED STYLESHEET (service.css)
   Contains ONLY styles not already present in style.css.
   Link AFTER style.css on every service page.

   style.css already provides:
   - :root variables
   - reset & base
   - .container, .section
   - .btn, .btn-gold, .btn-wa, .btn-call, .btn-outline
   - #navbar, .nav-logo, .nav-menu, .hamburger, .mobile-menu
   - .gold-divider, .section-tag, .section-title
   - footer, .footer-grid, .footer-col, .footer-brand
   - .reveal, .float-ct, .float-wa, #float-ca
   - @keyframes fade-up, orbit-spin, float-pulse, float-pulse-ca
   ============================================================ */


/* ============================================================
   1. BREADCRUMB
   ============================================================ */
.sp-breadcrumb {
    padding: 13px clamp(20px, 4vw, 48px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 8, 0.6);
}
.sp-breadcrumb-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--muted);
}
.sp-breadcrumb a {
    color: var(--muted);
    transition: color var(--transition);
}
.sp-breadcrumb a:hover { color: var(--gold); }
.sp-breadcrumb-sep    { opacity: 0.4; }
.sp-breadcrumb-cur    { color: var(--gold); }


/* ============================================================
   2. HERO SECTION
   Each page overrides --sp-accent for its unique colour.
   ============================================================ */
.sp-hero {
    padding: clamp(40px, 6vw, 110px) clamp(20px, 4vw, 48px) clamp(56px, 6vw, 90px);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* accent glow — overridden per page via inline style or page class */
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--sp-accent-glow, rgba(201,168,76,0.1)) 0%, transparent 65%),
        var(--black);

/* padding-top: 70px; */
}

/* Small pill badge */
.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 18px;
    background: var(--sp-accent-bg, rgba(201,168,76,0.1));
    border: 1px solid var(--sp-accent-border, rgba(201,168,76,0.3));
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sp-accent-color, var(--gold));
    margin-bottom: 22px;
    animation: fade-up 0.6s ease both;
}
.sp-hero-badge i {
    font-size: 0.9rem;
}

/* Large service icon */
/* ========== HERO ICON ANIMATIONS ========== */
.sp-badge-ctnr{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Wrapper that holds all animation layers */
.sp-hero-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    animation: fade-up 0.6s 0.1s ease both;
}

/* ── The actual image ── */
.sp-hero-icon-img {
    width: clamp(110px, 14vw, 160px);
    height: clamp(110px, 14vw, 160px);
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 3;

    /* Continuous gentle float */
    animation: icon-float 5s ease-in-out infinite;

    /* Drop shadow using page accent colour */
    filter: drop-shadow(0 0 28px var(--sp-accent-shadow, rgba(201,168,76,0.5)));
    transition: filter 0.4s ease, transform 0.4s ease;
}
.sp-hero-icon-wrap:hover .sp-hero-icon-img {
    filter: drop-shadow(0 0 48px var(--sp-accent-shadow, rgba(201,168,76,0.8)));
    transform: scale(1.06);
    animation-play-state: paused;
}

/* ── Rotating outer glow ring ── */
.sp-icon-ring {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-color: transparent;
    pointer-events: none;
    z-index: 2;
}
.sp-icon-ring-1 {
    width: calc(clamp(110px, 14vw, 160px) + 28px);
    height: calc(clamp(110px, 14vw, 160px) + 28px);
    border-top-color: var(--sp-accent-color, var(--gold));
    border-right-color: rgba(201, 168, 76, 0.15);
    border-width: 1.5px;
    animation: icon-ring-spin 6s linear infinite;
}
.sp-icon-ring-2 {
    width: calc(clamp(110px, 14vw, 160px) + 54px);
    height: calc(clamp(110px, 14vw, 160px) + 54px);
    border-bottom-color: var(--sp-accent-border, rgba(201,168,76,0.3));
    border-left-color: rgba(201, 168, 76, 0.08);
    border-width: 1px;
    animation: icon-ring-spin 10s linear infinite reverse;
}
.sp-icon-ring-3 {
    width: calc(clamp(110px, 14vw, 160px) + 80px);
    height: calc(clamp(110px, 14vw, 160px) + 80px);
    border-top-color: rgba(124, 58, 237, 0.25);
    border-width: 1px;
    animation: icon-ring-spin 16s linear infinite;
}

/* ── Pulsing glow blob behind the icon ── */
.sp-icon-glow {
    position: absolute;
    width: calc(clamp(110px, 14vw, 160px) + 20px);
    height: calc(clamp(110px, 14vw, 160px) + 20px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--sp-accent-glow, rgba(201,168,76,0.18)) 0%,
        transparent 70%
    );
    filter: blur(16px);
    z-index: 1;
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

/* ── Sparkle dots orbiting the icon ── */
.sp-icon-sparkles {
    position: absolute;
    width: calc(clamp(110px, 14vw, 160px) + 60px);
    height: calc(clamp(110px, 14vw, 160px) + 60px);
    border-radius: 50%;
    animation: icon-ring-spin 8s linear infinite;
    z-index: 4;
    pointer-events: none;
}
.sp-icon-sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.9);
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

/* Position each sparkle dot around the circle */
.sp-icon-sparkle:nth-child(1) {
    top: 0; left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    width: 6px; height: 6px;
}
.sp-icon-sparkle:nth-child(2) {
    top: 25%; right: 0;
    animation-delay: 0.5s;
    width: 4px; height: 4px;
}
.sp-icon-sparkle:nth-child(3) {
    bottom: 5%; right: 15%;
    animation-delay: 1s;
    width: 5px; height: 5px;
}
.sp-icon-sparkle:nth-child(4) {
    bottom: 5%; left: 15%;
    animation-delay: 1.5s;
    width: 4px; height: 4px;
}
.sp-icon-sparkle:nth-child(5) {
    top: 25%; left: 0;
    animation-delay: 0.8s;
    width: 3px; height: 3px;
}

/* ── Star particles that shoot outward ── */
.sp-icon-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.sp-icon-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: particle-shoot 4s ease-out infinite;
}
.sp-icon-particle:nth-child(1)  { animation-delay: 0s;    --angle: 0deg;   }
.sp-icon-particle:nth-child(2)  { animation-delay: 0.5s;  --angle: 45deg;  }
.sp-icon-particle:nth-child(3)  { animation-delay: 1s;    --angle: 90deg;  }
.sp-icon-particle:nth-child(4)  { animation-delay: 1.5s;  --angle: 135deg; }
.sp-icon-particle:nth-child(5)  { animation-delay: 2s;    --angle: 180deg; }
.sp-icon-particle:nth-child(6)  { animation-delay: 2.5s;  --angle: 225deg; }
.sp-icon-particle:nth-child(7)  { animation-delay: 3s;    --angle: 270deg; }
.sp-icon-particle:nth-child(8)  { animation-delay: 3.5s;  --angle: 315deg; }

/* ── Keyframes ── */

/* Gentle floating bob */
@keyframes icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    30%       { transform: translateY(-10px) rotate(1.5deg); }
    60%       { transform: translateY(-6px) rotate(-1deg); }
}

/* Ring rotation */
@keyframes icon-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Glow pulse */
@keyframes icon-glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Sparkle dot twinkle */
@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(-50%) scale(0.6);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* Particle shooting outward */
@keyframes particle-shoot {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0px);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(80px);
    }
}

/* Main headline */
.sp-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fade-up 0.6s 0.15s ease both;
}
.sp-hero h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.sp-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-weight: 300;
    animation: fade-up 0.6s 0.2s ease both;
}

/* CTA button row */
.sp-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 0.6s 0.28s ease both;
}

/* Rotating orbit rings — same animation as hero in style.css */
.sp-hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--sp-accent-orbit, rgba(201,168,76,0.06));
    pointer-events: none;
}
.sp-hero-orbit-1 {
    width: 500px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-spin 40s linear infinite;
}
.sp-hero-orbit-2 {
    width: 780px; height: 780px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-spin 65s linear infinite reverse;
}


/* ============================================================
   3. TRUST BAR
   ============================================================ */
.sp-trust {
    background: linear-gradient(135deg, rgba(45,16,84,0.6), rgba(13,11,26,0.85));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
}
.sp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sp-trust-item {
    text-align: center;
    padding: 10px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.1);
}
.sp-trust-item:last-child { border-right: none; }
.sp-trust-num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.sp-trust-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 5px;
}


/* ============================================================
   4. PAGE-LEVEL UTILITY CLASSES
   (mirror of index utility classes, prefixed sp- to be safe)
   ============================================================ */

/* Section eyebrow pill */
.sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.sp-tag i {
    font-size: 0.7rem;
    color: var(--gold);
}

/* Section heading */
.sp-h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.sp-h2 em {
    font-style: italic;
    color: var(--gold);
}

/* Short gold divider */
.sp-divider {
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px 0 28px;
    border-radius: 2px;
}
.center .sp-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Lead paragraph */
.sp-lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.82;
    font-weight: 300;
}

/* Dark alternate section background */
.sp-solutions-bg {
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45,16,84,0.3) 0%, transparent 70%),
        var(--deep);
}


/* ============================================================
   5. TWO-COLUMN LAYOUT
   ============================================================ */
.sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.sp-two-col-rev { direction: rtl; }
.sp-two-col-rev > * { direction: ltr; }


/* ============================================================
   6. SOLUTION / REMEDY CARDS
   ============================================================ */
.sp-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.sp-sol-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
/* Animated gold top bar on hover */
.sp-sol-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.sp-sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.4);
}
.sp-sol-card:hover::before { transform: scaleX(1); }

/* Icon circle */
.sp-sol-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background var(--transition);
}
.sp-sol-card:hover .sp-sol-icon-wrap {
    background: rgba(201, 168, 76, 0.18);
}
.sp-sol-icon-wrap i {
    font-size: 1.3rem;
    color: var(--gold);
}
.sp-sol-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-pale);
    margin-bottom: 8px;
}
.sp-sol-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
}


/* ============================================================
   7. PROCESS STEPS
   ============================================================ */
.sp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}
.sp-step {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: padding-left var(--transition);
}
.sp-step:last-child { border-bottom: none; }
.sp-step:hover { padding-left: 6px; }

/* Numbered circle */
.sp-step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--violet), var(--purple));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    transition: background var(--transition);
}
.sp-step:hover .sp-step-num {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #1a0a00;
}

.sp-step-body {}
.sp-step-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 4px;
}
.sp-step-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}


/* ============================================================
   8. VISUAL INFO CARD (right-column highlight box)
   ============================================================ */
.sp-visual-card {
    background: linear-gradient(145deg, var(--violet), var(--deep));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
/* Radial gold glow behind content */
.sp-visual-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.sp-visual-card-icon {
    font-size: 2.8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}
.sp-visual-card-icon i {
    filter: drop-shadow(0 0 16px rgba(201,168,76,0.4));
}
.sp-visual-card-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 16px;
    text-align: center;
}

/* List of bullet points inside the visual card */
.sp-visual-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.sp-visual-list-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.5;
}
.sp-visual-list-item i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}


/* ============================================================
   9. FAQ ACCORDION
   ============================================================ */
.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}
.sp-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 11px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.sp-faq-item.open { border-color: rgba(201, 168, 76, 0.45); }

.sp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    user-select: none;
}
.sp-faq-q:hover { color: var(--gold-pale); }

/* +/× toggle icon */
.sp-faq-toggle {
    width: 26px;
    height: 26px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gold);
}
.sp-faq-toggle i { font-size: 0.75rem; transition: transform var(--transition); }
.sp-faq-item.open .sp-faq-toggle {
    background: var(--gold);
    color: #1a0a00;
    border-color: var(--gold);
}
.sp-faq-item.open .sp-faq-toggle i { transform: rotate(45deg); }

.sp-faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.72;
}
.sp-faq-item.open .sp-faq-a { display: block; }


/* ============================================================
   10. CTA BANNER
   ============================================================ */
.sp-cta-banner {
    background: linear-gradient(135deg,
        rgba(45,16,84,0.92) 0%,
        rgba(13,5,26,0.96) 50%,
        rgba(45,16,84,0.92) 100%
    );
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Accent glow behind CTA — overridden per page */
.sp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, var(--sp-accent-glow, rgba(201,168,76,0.07)) 0%, transparent 65%);
    pointer-events: none;
}
.sp-cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.sp-cta-banner h2 span { color: var(--gold); }
.sp-cta-banner p {
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.sp-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Urgent alert box — used on divorce page */
.sp-alert {
    background: linear-gradient(135deg, rgba(220,38,38,0.12), rgba(220,38,38,0.05));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.sp-alert i {
    color: #fca5a5;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.sp-alert-title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    color: #fca5a5;
    margin-bottom: 5px;
}
.sp-alert-text { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* Disclaimer box — used on love spell page */
.sp-disclaimer {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.sp-disclaimer i { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.sp-disclaimer strong { color: var(--gold-pale); display: block; margin-bottom: 4px; }

/* Spell-specific card variant (love spell page — 2-col grid) */
.sp-spell-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.sp-spell-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.sp-spell-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.8), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.sp-spell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    border-color: rgba(124, 58, 237, 0.4);
}
.sp-spell-card:hover::before { transform: scaleX(1); }
.sp-spell-num {
    font-family: var(--font-head);
    font-size: 0.6rem;
    color: rgba(124,58,237,0.6);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.sp-spell-icon-wrap {
    width: 48px; height: 48px;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.sp-spell-icon-wrap i { font-size: 1.2rem; color: #c4b5fd; }
.sp-spell-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.sp-spell-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.sp-spell-result {
    font-size: 0.78rem;
    color: #c4b5fd;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-spell-result i { color: var(--gold); font-size: 0.6rem; }


/* ============================================================
   11. RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
    .sp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-trust-item:nth-child(2) { border-right: none; }
    .sp-trust-item:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.1); }
    .sp-trust-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.1); border-right: none; }

    .sp-two-col       { grid-template-columns: 1fr; gap: 36px; }
    .sp-two-col-rev   { direction: ltr; }
    .sp-sol-grid      { grid-template-columns: repeat(2, 1fr); }
    .sp-spell-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .sp-sol-grid { grid-template-columns: 1fr; }

    .sp-hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }

    .sp-hero-btns { flex-direction: column; align-items: center; }
    .sp-hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

    .sp-trust-grid { grid-template-columns: repeat(2, 1fr); }

    .sp-cta-btns { flex-direction: column; align-items: center; }
    .sp-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}
