/* ================================================================
   SHARED SERVICE PAGE STYLES — Data Minds Technologies
   Prefix: .sp- (service-page)
   Used by all internal service detail pages
   ================================================================ */

/* ── Hero Section (Dark) ── */
.sp-hero {
    position: relative;
    background: #0B0414;
    color: #fff;
    padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 10vw, 120px);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
    pointer-events: none;
    animation: sp-grid 25s linear infinite;
    z-index: 0;
}

@keyframes sp-grid {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(72px, 72px); }
}

.sp-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sp-hero-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.sp-hero-orbs .orb-1 {
    width: 600px;
    height: 600px;
    top: -20%;
    right: -10%;
    background: rgba(108, 43, 217, 0.25);
    animation: sp-orb-1 16s ease-in-out infinite alternate;
}

.sp-hero-orbs .orb-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: 5%;
    background: rgba(139, 92, 246, 0.18);
    animation: sp-orb-2 20s ease-in-out infinite alternate;
}

.sp-hero-orbs .orb-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 40%;
    background: rgba(167, 139, 250, 0.12);
    animation: sp-orb-3 12s ease-in-out infinite alternate;
}

@keyframes sp-orb-1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.1); }
}
@keyframes sp-orb-2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.15); }
}
@keyframes sp-orb-3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

.sp-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-hero-text .sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.sp-breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.sp-breadcrumb a:hover {
    color: #a78bfa;
}

.sp-breadcrumb .sep {
    opacity: 0.3;
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(108, 43, 217, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c4b5fd;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sp-hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8b5cf6;
    animation: pulse 2s ease-in-out infinite;
}

.sp-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #fff;
}

.sp-hero-text h1 .gradient-text {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd, #e0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.sp-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.sp-hero-text .sp-hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 32px;
}

.sp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
}

.sp-hero-stat {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.sp-hero-stat:last-child {
    border-right: none;
}

.sp-hero-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.sp-hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

/* Hero Visual Card */
.sp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-visual-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(108, 43, 217, 0.12), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}

.sp-visual-card svg {
    filter: drop-shadow(0 8px 24px rgba(108, 43, 217, 0.3));
}

.sp-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    animation: sp-float 6s ease-in-out infinite;
}

.sp-float-badge:nth-child(2) { animation-delay: -2s; }
.sp-float-badge:nth-child(3) { animation-delay: -4s; }

.sp-float-badge .fb-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.3);
}

@keyframes sp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.sp-float-tl { top: 10%; left: -5%; }
.sp-float-tr { top: 5%; right: -8%; animation-delay: -1.5s !important; }
.sp-float-bl { bottom: 15%; left: -10%; animation-delay: -3s !important; }
.sp-float-br { bottom: 5%; right: -5%; animation-delay: -4.5s !important; }


/* ── Trust Bar ── */
.sp-trust {
    padding: 40px 0;
    background: var(--bg-body);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.sp-trust p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sp-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.5s ease;
}

.sp-trust-logos:hover {
    opacity: 1;
}

.sp-trust-logo-img {
    max-height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}


/* ── Overview Section ── */
.sp-overview {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--bg-body);
    position: relative;
}

.sp-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sp-overview-text .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-008);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(108, 43, 217, 0.12);
    margin-bottom: 16px;
}

.sp-overview-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sp-overview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.sp-overview-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sp-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-warm);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.sp-highlight:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.sp-highlight .hl-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sp-highlight .hl-text h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.sp-highlight .hl-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.sp-overview-visual {
    position: relative;
}

.sp-overview-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient-section);
    aspect-ratio: 5/4;
    position: relative;
}

.sp-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-overview-image .overlay-stat {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-stat .os-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.overlay-stat .os-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}


/* ── Capabilities Grid ── */
.sp-capabilities {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.sp-capabilities::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(108, 43, 217, 0.04);
    filter: blur(80px);
    pointer-events: none;
}

.sp-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sp-cap-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.sp-cap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-cap-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.sp-cap-card:hover::before {
    opacity: 1;
}

.sp-cap-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-008);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.sp-cap-card:hover .sp-cap-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--glow-sm);
}

.sp-cap-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sp-cap-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.sp-cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sp-cap-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--primary-008);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 500;
}


/* ── Tech Stack ── */
.sp-tech {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.sp-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.sp-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.sp-tech-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.sp-tech-item img,
.sp-tech-item .sp-tech-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sp-tech-item svg {
    width: 40px;
    height: 40px;
}

.sp-tech-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}


/* ── Process Timeline ── */
.sp-process {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.sp-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.sp-process-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-light), var(--primary-light), var(--accent-light), transparent);
    z-index: 0;
}

.sp-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.sp-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.sp-step:hover .sp-step-number {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--glow-md);
    transform: scale(1.1);
}

.sp-step h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.sp-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sp-step-duration {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-light);
    background: var(--primary-008);
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 10px;
}


/* ── Why Choose Us Strip ── */
.sp-why-strip {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
    position: relative;
    overflow: hidden;
}

.sp-why-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 43, 217, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 43, 217, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sp-why-strip::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.08);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.sp-why-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sp-why-bg-deco .deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(108, 43, 217, 0.07);
}

.sp-why-bg-deco .deco-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
    animation: sp-float 20s ease-in-out infinite;
}

.sp-why-bg-deco .deco-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -40px;
    border-color: rgba(139, 92, 246, 0.06);
    animation: sp-float 16s ease-in-out infinite reverse;
}

.sp-why-bg-deco .deco-circle:nth-child(3) {
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: 30%;
    border-color: rgba(167, 139, 250, 0.08);
    animation: sp-float 18s ease-in-out infinite;
    animation-delay: -5s;
}

.sp-why-bg-deco .deco-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(108, 43, 217, 0.06), transparent);
}

.sp-why-bg-deco .deco-line:nth-child(4) {
    height: 250px;
    top: 10%;
    left: 15%;
    transform: rotate(25deg);
}

.sp-why-bg-deco .deco-line:nth-child(5) {
    height: 200px;
    top: 30%;
    right: 20%;
    transform: rotate(-20deg);
}

.sp-why-bg-deco .deco-line:nth-child(6) {
    height: 180px;
    bottom: 5%;
    left: 55%;
    transform: rotate(35deg);
}

.sp-why-bg-deco .deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(108, 43, 217, 0.15);
    box-shadow: 0 0 12px rgba(108, 43, 217, 0.1);
}

.sp-why-bg-deco .deco-dot:nth-child(7)  { top: 18%; left: 25%; animation: sp-dot-pulse 4s ease-in-out infinite; }
.sp-why-bg-deco .deco-dot:nth-child(8)  { top: 45%; right: 15%; animation: sp-dot-pulse 4s ease-in-out infinite; animation-delay: -1.5s; }
.sp-why-bg-deco .deco-dot:nth-child(9)  { bottom: 20%; left: 40%; animation: sp-dot-pulse 4s ease-in-out infinite; animation-delay: -3s; }
.sp-why-bg-deco .deco-dot:nth-child(10) { top: 70%; right: 35%; animation: sp-dot-pulse 4s ease-in-out infinite; animation-delay: -2s; }

.sp-why-bg-deco .deco-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sp-why-bg-deco .deco-orb:nth-child(11) {
    width: 350px;
    height: 350px;
    top: -100px;
    right: 10%;
    background: rgba(108, 43, 217, 0.05);
}

.sp-why-bg-deco .deco-orb:nth-child(12) {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 5%;
    background: rgba(167, 139, 250, 0.06);
}

@keyframes sp-dot-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.8); }
}

.sp-why-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.sp-why-header .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-008);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(108, 43, 217, 0.12);
    margin-bottom: 16px;
}

.sp-why-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.sp-why-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.sp-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-why-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(108, 43, 217, 0.12), 0 4px 12px rgba(0,0,0,0.04);
    transform: translateY(-6px);
}

.sp-why-card:hover::before {
    opacity: 1;
}

.sp-why-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 16px;
    transition: opacity 0.4s ease;
}

.sp-why-card:hover .sp-why-num {
    opacity: 0.6;
}

.sp-why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.sp-why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ── Case Study ── */
.sp-case-study {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sp-case-study::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(108, 43, 217, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.sp-cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-cs-content .cs-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a78bfa;
    margin-bottom: 16px;
}

.sp-cs-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.sp-cs-content .cs-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.sp-cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.sp-cs-metric {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}

.sp-cs-metric .cm-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #c4b5fd;
    line-height: 1.2;
}

.sp-cs-metric .cm-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

.sp-cs-visual {
    position: relative;
}

.sp-cs-card {
    background: linear-gradient(135deg, rgba(108, 43, 217, 0.15), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 24px;
    padding: 48px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sp-cs-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.05), transparent, transparent);
    animation: sp-rotate 20s linear infinite;
}

@keyframes sp-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sp-cs-card .cs-big-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.sp-cs-card .cs-big-number small {
    font-size: 0.5em;
    color: #a78bfa;
}

.sp-cs-card .cs-big-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}


/* ── FAQ ── */
.sp-faq {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.sp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.sp-faq-left .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-008);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(108, 43, 217, 0.12);
    margin-bottom: 16px;
}

.sp-faq-left h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.sp-faq-left p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sp-faq-item {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.sp-faq-item:hover {
    border-color: var(--border-hover);
}

.sp-faq-item.active {
    border-color: rgba(108, 43, 217, 0.2);
    box-shadow: var(--shadow-sm);
}

.sp-faq-trigger {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.sp-faq-trigger svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.sp-faq-item.active .sp-faq-trigger svg {
    transform: rotate(45deg);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.sp-faq-item.active .sp-faq-answer {
    max-height: 300px;
}

.sp-faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ── Related Services ── */
.sp-related {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
}

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.sp-related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.35s var(--ease-out);
    text-decoration: none;
    display: block;
}

.sp-related-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.sp-related-card .rc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-008);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: all 0.35s ease;
}

.sp-related-card:hover .rc-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--glow-sm);
}

.sp-related-card h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.sp-related-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ── CTA Banner ── */
.sp-cta {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--gradient-cta);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 120%, rgba(108, 43, 217, 0.25) 0%, transparent 50%),
                      radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.sp-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.sp-cta h2 .gradient-text {
    background: linear-gradient(135deg, #c4b5fd, #e0d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.sp-cta .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sp-cta .btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

.sp-cta .btn-white:hover {
    background: #f5f3ff;
    box-shadow: var(--shadow-lg);
}

.sp-cta .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.sp-cta .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}


/* ── Responsive ── */
@media (max-width: 1024px) {
    .sp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-hero-visual {
        display: none;
    }

    .sp-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-overview-visual {
        order: -1;
    }

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

    .sp-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .sp-process-timeline::before {
        display: none;
    }

    .sp-cs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

@media (max-width: 640px) {
    .sp-cap-grid {
        grid-template-columns: 1fr;
    }

    .sp-process-timeline {
        grid-template-columns: 1fr;
    }

    .sp-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-cs-metrics {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .sp-related-grid {
        grid-template-columns: 1fr;
    }

    .sp-overview-highlights {
        grid-template-columns: 1fr;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
    }

    .sp-hero-ctas {
        flex-direction: column;
    }

    .sp-hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}
