/* ─── Hero ──────────────────────────────────────────────────────────── */
.sp-hero {
    position: relative;
    padding: 8rem 2rem 5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    background: radial-gradient(ellipse at 70% 40%, rgba(191, 90, 242, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 209, 255, 0.05) 0%, transparent 60%),
        #0a0a0c;
}

/* animated scan-line overlay */
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(191, 90, 242, 0.012) 3px,
            rgba(191, 90, 242, 0.012) 4px);
    pointer-events: none;
    z-index: 1;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 80px;
    }
}

.sp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .sp-hero-content {
        grid-template-columns: 1fr;
    }

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

.sp-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.sp-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.sp-heading em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #00d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sp-pill {
    background: rgba(191, 90, 242, 0.08);
    border: 1px solid rgba(191, 90, 242, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.sp-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Animated radar SVG */
.sp-hero-radar {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    position: relative;
}

.radar-sweep {
    transform-origin: 130px 130px;
    animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.radar-dot {
    animation: dotFade 4s ease-in-out infinite;
}

.radar-dot:nth-child(2) {
    animation-delay: 0.7s;
}

.radar-dot:nth-child(3) {
    animation-delay: 1.4s;
}

.radar-dot:nth-child(4) {
    animation-delay: 2.1s;
}

@keyframes dotFade {

    0%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0.2;
    }
}

/* ─── Layout Container ──────────────────────────────────────────────── */
.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sp-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-section-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.sp-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.sp-section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 3rem;
}

/* ─── Pricing Tiers ─────────────────────────────────────────────────── */
.sp-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.sp-tier {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sp-tier:hover {
    transform: translateY(-6px);
}

.sp-tier.featured {
    border-color: rgba(191, 90, 242, 0.4);
    background: rgba(191, 90, 242, 0.04);
    box-shadow: 0 0 40px rgba(191, 90, 242, 0.1);
}

.sp-tier.featured:hover {
    border-color: rgba(191, 90, 242, 0.7);
    box-shadow: 0 20px 50px rgba(191, 90, 242, 0.2);
}

.sp-tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #00d1ff);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.sp-tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 90, 242, 0.1);
    color: var(--accent);
}

.sp-tier-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.sp-tier-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.sp-tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.2rem;
}

.sp-tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sp-tier-features li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.sp-tier-cta {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(191, 90, 242, 0.4);
    color: #fff;
    background: transparent;
}

.sp-tier-cta:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.sp-tier.featured .sp-tier-cta {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.sp-tier.featured .sp-tier-cta:hover {
    background: #d17af7;
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.5);
}

/* ─── Deliverables Grid ──────────────────────────────────────────────── */
.sp-deliver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.sp-deliver-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-deliver-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(191, 90, 242, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.sp-deliver-card:hover {
    border-color: rgba(191, 90, 242, 0.3);
    transform: translateY(-4px);
}

.sp-deliver-card:hover::after {
    opacity: 1;
}

.sp-deliver-icon {
    width: 44px;
    height: 44px;
    background: rgba(191, 90, 242, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.sp-deliver-card h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.sp-deliver-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── Process Steps ──────────────────────────────────────────────────── */
.sp-process {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.sp-process::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(191, 90, 242, 0.15);
    z-index: 1;
}

.sp-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 0.5rem;
}

.sp-step-num {
    width: 50px;
    height: 50px;
    background: #0a0a0c;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.3);
}

.sp-step h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.sp-step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .sp-process {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

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

    .sp-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .sp-step-num {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ─── ICP / Who Section ───────────────────────────────────────────────── */
.sp-icp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.sp-icp-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    transition: border-color 0.3s, background 0.3s;
}

.sp-icp-item:hover {
    border-color: rgba(191, 90, 242, 0.3);
    background: rgba(191, 90, 242, 0.03);
}

.sp-icp-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sp-icp-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ─── Main + Sidebar Layout ──────────────────────────────────────────── */
.sp-main-aside {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 0;
    align-items: start;
    max-width: 860px;
}

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(191, 90, 242, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(191, 90, 242, 0.4);
}

.faq-question {
    padding: 1.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
    background: rgba(191, 90, 242, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.45s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.3rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── Sidebar Order Card ─────────────────────────────────────────────── */
.sp-order-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(191, 90, 242, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 100px;
}

.sp-order-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.sp-order-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    background: var(--accent);
    color: #000;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-full:hover {
    background: #d17af7;
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.5);
}

.sp-includes {
    margin-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sp-include-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sp-include-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ─── CTA Banner ─────────────────────────────────────────────────────── */
.sp-cta-banner {
    background: linear-gradient(135deg, rgba(191, 90, 242, 0.1), rgba(10, 10, 12, 1));
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(191, 90, 242, 0.25);
    text-align: center;
    margin: 4rem 0 6rem;
}

.sp-cta-banner h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sp-cta-banner p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.sp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ghost-btn-sp {
    background: transparent;
    border: 1px solid rgba(191, 90, 242, 0.5);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.ghost-btn-sp:hover {
    border-color: var(--accent);
    background: rgba(191, 90, 242, 0.1);
}

/* ─── Modal ──────────────────────────────────────────────────────────── */
.sp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.sp-modal {
    background: #111;
    border: 1px solid rgba(191, 90, 242, 0.35);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.sp-modal-overlay.active .sp-modal {
    transform: translateY(0);
}

.sp-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.3s;
}

.sp-modal-close:hover {
    color: #fff;
}

.sp-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sp-dot {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: background 0.3s;
}

.sp-dot.active {
    background: var(--accent);
}

.sp-modal-step {
    display: none;
    animation: spFadeIn 0.3s ease;
}

.sp-modal-step.active {
    display: block;
}

@keyframes spFadeIn {
    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sp-modal-step h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.sp-modal-step>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.sp-option-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sp-option-btn:hover {
    background: rgba(191, 90, 242, 0.08);
    border-color: rgba(191, 90, 242, 0.4);
    transform: translateY(-2px);
}

.sp-option-btn.selected {
    background: rgba(191, 90, 242, 0.18);
    border-color: var(--accent);
}

.sp-modal-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.sp-modal-input:focus {
    border-color: var(--accent);
}

.sp-modal-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.sp-modal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1.8rem;
    align-items: center;
}

.sp-btn-back {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.sp-btn-back:hover {
    color: #fff;
}

.sp-btn-next {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.65rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sp-btn-next:hover {
    background: #d17af7;
    box-shadow: 0 0 15px rgba(191, 90, 242, 0.4);
}

.sp-btn-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.sp-domains-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .sp-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

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

/* Text Justification */
.sp-desc,
.sp-section-desc,
.faq-answer-inner {
    text-align: justify;
}
