/* ════════════════════════════════════════════════════════════════
   static-pages.css  —  shared styles for Privacy, Contact,
   Affiliate Disclosure, Testing & Review Process pages
   ════════════════════════════════════════════════════════════════ */

:root {
    --teal: #31adad;
    --pink: #ff2d8d;
    --dark: #111827;
    --grad: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    --hero-bg: linear-gradient(135deg, #060b14 0%, #0a1428 55%, #0d0a1e 100%);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.sp-hero {
    position: relative;
    background: var(--hero-bg);
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}

.sp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(49, 173, 173, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49, 173, 173, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sp-hero-blob1 {
    position: absolute;
    top: -120px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(49, 173, 173, .16) 0%, transparent 70%);
    border-radius: 50%;
    animation: spBlob 9s ease-in-out infinite;
}

.sp-hero-blob2 {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 45, 141, .13) 0%, transparent 70%);
    border-radius: 50%;
    animation: spBlob 11s ease-in-out infinite reverse;
}

@keyframes spBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(25px, -18px) scale(1.06);
    }

    70% {
        transform: translate(-15px, 12px) scale(.96);
    }
}

.sp-hero-inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.sp-bc {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sp-bc a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .83rem;
    font-weight: 500;
    transition: color .2s;
}

.sp-bc a:hover {
    color: var(--teal);
}

.sp-bc .sep {
    color: rgba(255, 255, 255, .22);
    font-size: .78rem;
}

.sp-bc .active {
    color: var(--teal);
    font-size: .83rem;
    font-weight: 600;
}

/* Hero badge */
.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem 1rem;
    background: rgba(49, 173, 173, .11);
    border: 1px solid rgba(49, 173, 173, .28);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.3rem;
}

/* Hero title */
.sp-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.sp-title .t-teal {
    color: var(--teal);
}

.sp-title .t-pink {
    color: var(--pink);
}

.sp-title .t-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.sp-subtitle {
    font-size: 1rem;
    color: rgba(226, 232, 240, .7);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 1.8rem;
}

/* Meta strip */
.sp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.sp-meta-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: rgba(226, 232, 240, .55);
    font-weight: 500;
}

.sp-meta-item i {
    color: var(--teal);
}

/* ── CONTENT LAYOUT ──────────────────────────────────────────── */
.sp-section {
    padding: 4.5rem 0;
    background: #fff;
}

.sp-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

/* ── CMS BODY ────────────────────────────────────────────────── */
.sp-cms {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
}

.sp-cms h1,
.sp-cms h1 strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1.2;
    margin: 1.6rem 0 .9rem;
}

.sp-cms h2,
.sp-cms h2 strong {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1.25;
    margin: 2rem 0 .8rem;
}

.sp-cms h3,
.sp-cms h3 strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pink);
    margin: 1.5rem 0 .7rem;
}

.sp-cms h4,
.sp-cms h4 strong {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--teal);
    margin: 1.2rem 0 .6rem;
}

.sp-cms h5,
.sp-cms h6,
.sp-cms h5 strong,
.sp-cms h6 strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin: 1rem 0 .5rem;
}

.sp-cms p {
    margin-bottom: 1.1rem;
}

.sp-cms p strong,
.sp-cms li strong,
.sp-cms td strong {
    font-weight: 700;
    color: var(--teal);
}

.sp-cms a {
    color: royalblue;
    text-decoration: underline;
    font-weight: 600;
}

.sp-cms ul,
.sp-cms ol {
    padding-left: 1.6em;
    margin-bottom: 1.1em;
}

.sp-cms li {
    margin-bottom: 5px;
}

.sp-cms blockquote {
    border-left: 4px solid var(--teal);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: #f0fefe;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #374151;
}

.sp-cms blockquote p {
    margin: 0;
}

.sp-cms hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 2em 0;
}

.sp-cms figure.image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1.5em auto;
    max-width: 100%;
}

.sp-cms figure.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
}

.sp-cms figure.image figcaption {
    display: table-caption;
    caption-side: bottom;
    color: #888;
    background: #f7f7f7;
    padding: 5px 10px;
    font-size: .8em;
    border-radius: 0 0 8px 8px;
}

.sp-cms figure.table {
    margin: 1.5em auto;
    overflow-x: auto;
    display: block;
}

.sp-cms figure.table table {
    border-collapse: collapse;
    width: 100%;
    font-size: .9em;
}

.sp-cms figure.table table th,
.sp-cms figure.table table td {
    border: 1px solid #d0d7de;
    padding: 9px 13px;
    vertical-align: top;
}

.sp-cms figure.table table th {
    background: #f6f8fa;
    font-weight: 700;
}

.sp-cms figure.table table tr:nth-child(even) td {
    background: #fafbfc;
}

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sp-sidebar {
    position: sticky;
    top: 100px;
}

.sp-sidebar-card {
    background: linear-gradient(135deg, #060b14, #0a1428);
    border-radius: 18px;
    padding: 1.6rem;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(49, 173, 173, .14);
}

.sp-sidebar-card.light {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.sp-sc-title {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sp-sc-title.dark-txt {
    color: var(--dark);
}

.sp-sc-title i {
    color: var(--teal);
}

.sp-sc-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(226, 232, 240, .65);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 500;
    transition: color .2s;
}

.sp-sc-link.dark-link {
    color: #6b7280;
    border-bottom-color: #f3f4f6;
}

.sp-sc-link:last-child {
    border-bottom: none;
}

.sp-sc-link:hover {
    color: var(--teal);
}

.sp-sc-link i {
    font-size: .75rem;
    color: var(--teal);
}

.sp-sc-cta {
    background: var(--grad);
    border-radius: 18px;
    padding: 1.6rem;
    text-align: center;
    margin-bottom: 1.4rem;
}

.sp-sc-cta i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, .9);
    display: block;
    margin-bottom: .7rem;
}

.sp-sc-cta h6 {
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: .4rem;
}

.sp-sc-cta p {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sp-sc-cta a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.3rem;
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: all .2s;
    backdrop-filter: blur(6px);
}

.sp-sc-cta a:hover {
    background: rgba(255, 255, 255, .24);
    color: #fff;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .sp-layout {
        grid-template-columns: 1fr;
    }

    .sp-sidebar {
        position: static;
    }

    .sp-section {
        padding: 3rem 0;
    }

    .sp-hero {
        padding: 3rem 0 2.5rem;
    }
}

@media (max-width: 767px) {
    .sp-title {
        font-size: 1.75rem;
    }

    .sp-subtitle {
        font-size: .88rem;
    }

    .sp-section {
        padding: 2.2rem 0;
    }
}