:root {
    --pp-orange: #ff9201;
    --pp-blue: #00b1e1;
    --pp-ink: #0a0a0c;
    --pp-paper: #fafaf7;
    --pp-rule: rgba(0, 0, 0, 0.08);
}
.dark-mode {
    --pp-rule: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Editorial grain texture overlay (subtle film noise) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 180px 180px;
}

.sp-page { padding-top: 110px; }

/* =================================================================
   1. HERO — editorial, asymmetric, oversized type
   ================================================================= */
.sp-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem 5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sp-hero-bg {
    position: absolute;
    inset: -4rem -2rem 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Refined gradient mesh — not just two circles */
.sp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: sp-float 18s ease-in-out infinite;
}
.sp-blob-1 {
    width: 580px; height: 580px;
    background: radial-gradient(circle, var(--pp-orange), transparent 70%);
    top: -180px; left: -180px;
}
.sp-blob-2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--pp-blue), transparent 70%);
    top: -80px; right: -150px;
    animation-delay: 6s;
}
.dark-mode .sp-blob { opacity: 0.3; }

@keyframes sp-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.08); }
    66% { transform: translate(-30px, 40px) scale(0.94); }
}

/* Eyebrow — minimal, no pill, vertical-rule accent */
.sp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0;
    border: none;
    background: none;
}
.sp-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--pp-orange), var(--pp-blue));
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

/* Massive editorial title */
.sp-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 11vw, 9.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
    max-width: 12ch;
}
.sp-hero h1 .grad {
    background: linear-gradient(90deg, var(--pp-orange) 0%, var(--pp-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    display: inline-block;
}

.grad {
    background: linear-gradient(90deg, var(--pp-orange), var(--pp-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Two-column hero block on desktop */
.sp-hero .sp-lede,
.sp-hero .sp-cta {
    max-width: 540px;
}
.sp-lede {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.55;
    margin: 0 0 2rem;
    color: var(--text-color);
    opacity: 0.78;
}
.sp-lede::first-letter {
    font-weight: 700;
    font-size: 1.4em;
    color: var(--pp-orange);
    line-height: 1;
}

/* Hero CTA — high-contrast, no pill */
.sp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 2rem;
    border-radius: 999px;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease,
                gap 0.3s ease;
    will-change: transform;
}
.sp-cta:hover {
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    color: #fff;
    transform: translateY(-3px);
    gap: 1.1rem;
    box-shadow: 0 16px 36px rgba(255, 146, 1, 0.35);
}
.sp-cta i { transition: transform 0.3s ease; }
.sp-cta:hover i { transform: translateX(4px); }

/* =================================================================
   2. SECTION — editorial spread with sticky index
   ================================================================= */
.sp-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    position: relative;
    border-top: 1px solid var(--pp-rule);
}
.sp-section:first-of-type { border-top: none; }

/* Section number watermark — auto-incremented */
.sp-page { counter-reset: spsection; }
.sp-section { counter-increment: spsection; }
.sp-section::before {
    content: "§ " counter(spsection, decimal-leading-zero);
    position: absolute;
    top: 2.25rem;
    left: 3rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    opacity: 0.55;
    font-weight: 600;
    text-transform: uppercase;
    font-feature-settings: "tnum";
}

.sp-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 4.75rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 2.5rem 0 2rem;
    max-width: 18ch;
}

.sp-section p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    max-width: 62ch;
    color: var(--text-color);
    opacity: 0.82;
    margin: 0 0 1.25rem;
}

/* Bulleted lists feel editorial */
.sp-bullets {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 70ch;
}
.sp-bullets li {
    position: relative;
    padding: 1.25rem 0 1.25rem 3rem;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--pp-rule);
}
.sp-bullets li:last-child { border-bottom: none; }
.sp-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 1.25rem;
    color: var(--pp-orange);
    font-weight: 700;
}
.sp-bullets li strong { font-weight: 700; }

/* =================================================================
   3. DELIVERABLES GRID — editorial cards with reveal-on-hover
   ================================================================= */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--pp-rule);
    border-left: 1px solid var(--pp-rule);
    counter-reset: spcard;
}

.sp-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--pp-rule);
    border-bottom: 1px solid var(--pp-rule);
    border-radius: 0;
    overflow: hidden;
    counter-increment: spcard;
    transition: background 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    isolation: isolate;
}

/* Card number prefix */
.sp-card::before {
    content: counter(spcard, decimal-leading-zero);
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Card gradient sweep on hover */
.sp-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 146, 1, 0.08), rgba(0, 177, 225, 0.08));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}
.sp-card:hover { transform: none !important; }
.sp-card:hover::after { opacity: 1; }
.sp-card:hover::before { color: var(--pp-orange); opacity: 1; }

.sp-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--pp-orange);
    font-size: 1.5rem;
    margin: 0 0 2rem;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sp-card:hover .sp-card-icon { transform: translateX(6px); }

.sp-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.85rem;
}

.sp-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.7;
    margin: 0;
    max-width: 32ch;
}

/* =================================================================
   4. PROCESS — editorial timeline with massive numerals
   ================================================================= */
.sp-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
    counter-reset: spstep;
    border-top: 1px solid var(--pp-rule);
}

.sp-step {
    position: relative;
    padding: 2.5rem 0 2.5rem 9rem;
    background: none;
    border: none;
    border-bottom: 1px solid var(--pp-rule);
    border-radius: 0;
    counter-increment: spstep;
    transition: padding-left 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sp-step::before {
    content: counter(spstep, decimal-leading-zero);
    position: absolute;
    top: 2.25rem;
    left: 0;
    padding: 0;
    background: none;
    color: var(--text-color);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.15;
    transition: opacity 0.5s ease, color 0.5s ease;
}
.sp-step:hover { padding-left: 10rem; }
.sp-step:hover::before {
    opacity: 1;
    color: var(--pp-orange);
}

.sp-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 0.75rem;
}

.sp-step p {
    font-size: 1rem;
    line-height: 1.55;
    opacity: 0.75;
    margin: 0;
    max-width: 55ch;
}

@media (max-width: 768px) {
    .sp-step { padding-left: 6.5rem; }
    .sp-step:hover { padding-left: 6.5rem; }
}

/* =================================================================
   5. FAQ — minimal editorial accordion
   ================================================================= */
.sp-faq {
    margin-top: 3rem;
    border-top: 1px solid var(--pp-rule);
}
.sp-faq details {
    border: none;
    border-bottom: 1px solid var(--pp-rule);
    border-radius: 0;
    padding: 1.75rem 0;
    margin: 0;
    background: transparent;
    transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sp-faq details[open] {
    padding: 2rem 0 2.5rem;
    border-color: var(--pp-rule);
}
.sp-faq summary {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-right: 0.5rem;
    transition: color 0.3s ease;
}
.sp-faq summary:hover { color: var(--pp-orange); }
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
    background-size: 100% 2px, 2px 100%;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 0.4em;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sp-faq details[open] summary::after {
    transform: rotate(45deg);
    color: var(--pp-orange);
}
.sp-faq details > p {
    margin-top: 1.25rem;
    opacity: 0.75;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 62ch;
}

/* =================================================================
   6. RELATED SERVICES — horizontal-feel cards with arrow
   ================================================================= */
.sp-related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--pp-rule);
    border-left: 1px solid var(--pp-rule);
}
.sp-related a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.75rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--pp-rule);
    border-bottom: 1px solid var(--pp-rule);
    border-radius: 0;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    position: relative;
    overflow: hidden;
    transition: padding 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}
.sp-related a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}
.sp-related a:hover {
    color: #fff;
    padding-left: 2.25rem;
}
.sp-related a:hover::before { transform: translateY(0); }
.sp-related a i {
    color: var(--pp-orange);
    transition: color 0.3s ease, transform 0.4s ease;
}
.sp-related a:hover i {
    color: #fff;
    transform: translateX(6px);
}

/* =================================================================
   7. CTA BANNER — full-bleed editorial moment
   ================================================================= */
.sp-cta-banner {
    max-width: none;
    margin: 0;
    padding: 8rem 3rem;
    border-radius: 0;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.sp-cta-banner::before {
    content: "";
    position: absolute;
    inset: -50% -10% auto auto;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 146, 1, 0.4), transparent 65%);
    filter: blur(80px);
    z-index: -1;
}
.sp-cta-banner::after {
    content: "";
    position: absolute;
    inset: auto auto -50% -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 177, 225, 0.4), transparent 65%);
    filter: blur(80px);
    z-index: -1;
}
.sp-cta-banner > * { position: relative; z-index: 1; }
.sp-cta-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0 auto 1.5rem;
    max-width: 14ch;
}
.sp-cta-banner p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    opacity: 0.7;
    margin: 0 auto 2.5rem;
    max-width: 50ch;
}
.sp-cta-banner .sp-cta {
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    color: #fff;
}
.sp-cta-banner .sp-cta:hover {
    background: #fff;
    color: var(--text-color);
}

/* CTA card variant (kept for legacy refs) */
.sp-cta-card {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 5rem 3rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 146, 1, 0.08), rgba(0, 177, 225, 0.08));
    border: 1px solid var(--pp-rule);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sp-cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 auto 1rem;
    max-width: 16ch;
}
.sp-cta-card p {
    color: var(--text-secondary);
    margin: 0 auto 2rem;
    max-width: 50ch;
    font-size: 1.05rem;
}

/* =================================================================
   8. SERVICES HUB GRID — distinctive card with content reveal
   ================================================================= */
.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--pp-rule);
    border-left: 1px solid var(--pp-rule);
}

.sp-service-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--pp-rule);
    border-bottom: 1px solid var(--pp-rule);
    border-radius: 0;
    color: var(--text-color);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sp-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}
.sp-service-card::after {
    content: "→";
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.4s ease;
}
.sp-service-card:hover { color: #fff; transform: none; box-shadow: none; }
.sp-service-card:hover::before { transform: scaleY(1); }
.sp-service-card:hover::after { color: #fff; transform: translate(4px, -4px); }
.sp-service-card:hover .sp-service-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.sp-service-card:hover .sp-service-card-cta { color: #fff; }

.sp-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 146, 1, 0.15), rgba(0, 177, 225, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-orange);
    font-size: 1.4rem;
    margin: 0 0 2.5rem;
    transition: background 0.4s ease, color 0.4s ease;
}

.sp-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    max-width: 14ch;
}

.sp-service-card p {
    font-size: 0.98rem;
    line-height: 1.55;
    opacity: 0.78;
    margin: 0 0 2rem;
    max-width: 38ch;
}

.sp-service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pp-orange);
    transition: color 0.3s ease;
}

/* =================================================================
   9. NEW EDITORIAL COMPONENTS — marquee, pullquote, bigstat
   ================================================================= */

/* Infinite marquee — drop into any page for energy */
.sp-marquee {
    overflow: hidden;
    padding: 2.5rem 0;
    border-top: 1px solid var(--pp-rule);
    border-bottom: 1px solid var(--pp-rule);
    margin: 6rem 0 0;
    background: var(--surface-color);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.sp-marquee-track {
    display: flex;
    gap: 4rem;
    animation: sp-marquee 38s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.sp-marquee:hover .sp-marquee-track { animation-play-state: paused; }
.sp-marquee-item {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--text-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}
.sp-marquee-item::after {
    content: "✦";
    color: var(--pp-orange);
    font-size: 0.55em;
    margin-left: 1rem;
}
.sp-marquee-item:nth-child(even) {
    background: linear-gradient(90deg, var(--pp-orange), var(--pp-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes sp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pull quote — editorial moment */
.sp-pullquote {
    margin: 5rem 0;
    padding: 0;
    border: none;
    position: relative;
    max-width: 22ch;
}
.sp-pullquote::before {
    content: "“";
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--pp-orange);
    line-height: 1;
    opacity: 0.3;
}
.sp-pullquote p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: none;
}
.sp-pullquote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 600;
}

/* Editorial stat — massive number, minimal label */
.sp-bigstats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    margin: 4rem 0 0;
    border-top: 1px solid var(--pp-rule);
}
.sp-bigstat {
    padding: 3rem 2rem;
    border-right: 1px solid var(--pp-rule);
    border-bottom: 1px solid var(--pp-rule);
    background: transparent;
    text-align: left;
}
.sp-bigstat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.85rem;
}
.sp-bigstat .label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.4;
}

/* Feature row — alternating asymmetric (use class on .sp-section) */
.sp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}
.sp-feature-row:nth-of-type(even) {
    grid-template-columns: 1.4fr 1fr;
    direction: rtl;
}
.sp-feature-row:nth-of-type(even) > * { direction: ltr; }
@media (max-width: 900px) {
    .sp-feature-row,
    .sp-feature-row:nth-of-type(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }
}

/* =================================================================
   10. RTL
   ================================================================= */
body.rtl .sp-hero,
body.rtl .sp-section { text-align: right; }
body.rtl .sp-hero h1,
body.rtl .sp-section h2,
body.rtl .sp-cta-banner h2,
body.rtl .sp-cta-card h2,
body.rtl .sp-service-card h3,
body.rtl .sp-card h3,
body.rtl .sp-step h3,
body.rtl .sp-faq summary,
body.rtl .sp-related a,
body.rtl .sp-pullquote p,
body.rtl .sp-bigstat .num {
    font-family: 'Tajawal', 'Cairo', 'Montserrat', sans-serif;
}
body.rtl .sp-eyebrow { letter-spacing: 0.18em; }
body.rtl .sp-section::before { left: auto; right: 3rem; }
body.rtl .sp-step { padding: 2.5rem 9rem 2.5rem 0; }
body.rtl .sp-step::before { left: auto; right: 0; }
body.rtl .sp-step:hover { padding-right: 10rem; padding-left: 0; }
body.rtl .sp-bullets li { padding: 1.25rem 3rem 1.25rem 0; }
body.rtl .sp-bullets li::before { left: auto; right: 0; content: "←"; }
body.rtl .sp-card::before { right: auto; left: 1.75rem; }
body.rtl .sp-service-card::after { right: auto; left: 2.5rem; content: "←"; }
body.rtl .sp-pullquote::before { left: auto; right: -0.5rem; }
body.rtl .sp-marquee-track { animation-direction: reverse; }

/* =================================================================
   11. MOBILE
   ================================================================= */
@media (max-width: 768px) {
    .sp-hero { padding: 3rem 1.5rem 3rem; }
    .sp-section { padding: 3.5rem 1.5rem; }
    .sp-section::before { left: 1.5rem; top: 1.5rem; }
    .sp-cta-banner { padding: 4.5rem 1.5rem; }
    .sp-cta-card { padding: 3rem 1.5rem; }
    .sp-service-card { padding: 2rem 1.5rem; }
    .sp-card { padding: 2rem 1.5rem; }
    .sp-related a { padding: 1.5rem 1.25rem; }
    .sp-marquee { padding: 1.75rem 0; }
    .sp-feature-row { margin-top: 1.5rem; }
    .sp-bigstat { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
    .sp-hero h1 { font-size: clamp(2.5rem, 14vw, 4.5rem); }
    .sp-section h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .sp-cta-banner h2 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
}

/* ============================================================
   Scrollytelling animations
   ============================================================ */

/* Reading progress bar (top of viewport) */
.sp-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--pp-orange), var(--pp-blue));
    z-index: 1100;
    transition: width 0.1s linear;
    box-shadow: 0 0 18px rgba(255, 146, 1, 0.45);
    pointer-events: none;
}
body.rtl .sp-progress { left: auto; right: 0; }

/* Base reveal — applied automatically by JS to sections, cards, headings */
.sp-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.sp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sideways reveal variant — for hero/CTA images & related blocks */
.sp-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.sp-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* Scale reveal — for stat numbers / big features */
.sp-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger children — when a parent has .sp-stagger, its .sp-reveal children get delays */
.sp-stagger > .sp-reveal:nth-child(1),
.sp-stagger > .sp-reveal-scale:nth-child(1) { transition-delay: 0.00s; }
.sp-stagger > .sp-reveal:nth-child(2),
.sp-stagger > .sp-reveal-scale:nth-child(2) { transition-delay: 0.08s; }
.sp-stagger > .sp-reveal:nth-child(3),
.sp-stagger > .sp-reveal-scale:nth-child(3) { transition-delay: 0.16s; }
.sp-stagger > .sp-reveal:nth-child(4),
.sp-stagger > .sp-reveal-scale:nth-child(4) { transition-delay: 0.24s; }
.sp-stagger > .sp-reveal:nth-child(5),
.sp-stagger > .sp-reveal-scale:nth-child(5) { transition-delay: 0.32s; }
.sp-stagger > .sp-reveal:nth-child(6),
.sp-stagger > .sp-reveal-scale:nth-child(6) { transition-delay: 0.40s; }
.sp-stagger > .sp-reveal:nth-child(n+7),
.sp-stagger > .sp-reveal-scale:nth-child(n+7) { transition-delay: 0.48s; }

/* Cards: tilt + lift on hover (magnetic feel) */
.sp-card,
.sp-related-card,
.sp-service-card,
.wk-card {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease;
    will-change: transform;
}
.sp-card:hover,
.sp-related-card:hover,
.sp-service-card:hover,
.wk-card:hover {
    transform: translateY(-6px) scale(1.012);
}

/* Hero blobs parallax — JS sets --sp-scroll on body */
.sp-hero-bg .sp-blob,
.pg-hero-bg .pg-blob,
.ar-hero-bg .ar-blob {
    transform: translate3d(0, calc(var(--sp-scroll, 0) * -0.15px), 0);
    transition: transform 0.05s linear;
}

/* Title sweep — subtle highlight that drifts under the gradient text */
.sp-hero h1 .grad,
.pg-title .grad,
.ar-title .grad {
    background-size: 200% auto;
    animation: sp-grad-drift 6s linear infinite;
}
@keyframes sp-grad-drift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Section gradient underline — appears on reveal */
.sp-section h2 {
    position: relative;
}
.sp-section h2.sp-reveal::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    margin-top: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pp-orange), var(--pp-blue));
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.sp-section h2.sp-reveal.is-visible::after {
    width: 72px;
}

/* Counter number pop — paired with JS counter animation */
.sp-count {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-count.is-counting { transform: scale(1.06); }

/* Floating CTA chip — anchored bottom-right after scroll past hero */
.sp-floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pp-orange), var(--pp-blue));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(255, 146, 1, 0.35);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.sp-floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sp-floating-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 146, 1, 0.45);
}
body.rtl .sp-floating-cta { right: auto; left: 24px; }
@media (max-width: 640px) {
    .sp-floating-cta { bottom: 16px; right: 16px; padding: 0.75rem 1.15rem; font-size: 0.78rem; }
    body.rtl .sp-floating-cta { right: auto; left: 16px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .sp-reveal,
    .sp-reveal-left,
    .sp-reveal-right,
    .sp-reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .sp-hero-bg .sp-blob,
    .pg-hero-bg .pg-blob,
    .ar-hero-bg .ar-blob { transform: none !important; }
    .sp-hero h1 .grad,
    .pg-title .grad,
    .ar-title .grad { animation: none !important; }
    .sp-progress,
    .sp-floating-cta { transition: none !important; }
}
