.sp-page {
    --sp-brand: #000326;
    --sp-brand-mid: #000a2e;
    --sp-brand-light: #001040;
    --sp-accent: #9ec5e8;
    color: #1a2b3c;
}

.sp-hero {
    background: linear-gradient(160deg, var(--sp-brand) 0%, var(--sp-brand-mid) 55%, var(--sp-brand-light) 100%);
    border-radius: 12px;
    color: #fff;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.sp-hero::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.sp-hero-content {
    position: relative;
    z-index: 1;
}

.sp-hero h1 {
    font-family: Amaranth, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.sp-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.sp-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sp-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
}

.sp-stat strong {
    color: var(--sp-accent);
    font-weight: 700;
}

.sp-section-title {
    color: var(--sp-brand);
    font-family: Amaranth, sans-serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sp-benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 3, 38, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 3, 38, 0.12);
    transform: translateY(-2px);
}

.sp-benefit-icon {
    align-items: center;
    background: rgba(0, 3, 38, 0.08);
    border-radius: 10px;
    color: var(--sp-brand);
    display: inline-flex;
    font-size: 1.35rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 0.75rem;
    width: 48px;
}

.sp-steps {
    counter-reset: sp-step;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-steps li {
    counter-increment: sp-step;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.sp-steps li::before {
    align-items: center;
    background: var(--sp-brand);
    border-radius: 50%;
    color: #fff;
    content: counter(sp-step);
    display: flex;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.sp-steps li strong {
    color: var(--sp-brand);
    display: block;
    margin-bottom: 0.2rem;
}

.sp-steps li p {
    color: #5a6b7d;
    font-size: 0.92rem;
    margin-bottom: 0;
}

.sp-audience {
    background: rgba(0, 3, 38, 0.04);
    border: 1px solid rgba(0, 3, 38, 0.12);
    border-radius: 10px;
    padding: 1.5rem;
}

.sp-audience h2 {
    color: var(--sp-brand);
}

.sp-audience ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.sp-audience li {
    margin-bottom: 0.5rem;
}

.sp-audience li:last-child {
    margin-bottom: 0;
}

.sp-cta {
    background: rgba(0, 3, 38, 0.04);
    border: 1px solid rgba(0, 3, 38, 0.12);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.sp-cta h2 {
    color: var(--sp-brand);
    font-family: Amaranth, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.sp-cta p {
    color: #5a6b7d;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 32rem;
}
