/* ════════════════════════════════════════════════════════════════
   Specs Packaging Suite — Public Stylesheet v1.1
   Natural scroll layout — compatible with Divi / any theme
   © 2026 Blade Research Inc. All rights reserved.
   ════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --sps-primary:      #1A3D2B;
    --sps-primary-lt:   #2D6A4F;
    --sps-primary-dk:   #0D2118;
    --sps-accent:       #C8963E;
    --sps-accent-lt:    #E8B86D;
    --sps-accent-glow:  rgba(200,150,62,0.35);
    --sps-bg:           #F5EDD6;
    --sps-bg-alt:       #EAE3CC;
    --sps-bg-dark:      #111916;
    --sps-white:        #FFFFFF;
    --sps-text:         #1C2420;
    --sps-text-muted:   #5A6B61;
    --sps-border:       rgba(26,61,43,0.12);
    --sps-shadow:       0 4px 24px rgba(26,61,43,0.10);
    --sps-shadow-lg:    0 16px 56px rgba(26,61,43,0.16);
    --sps-shadow-xl:    0 32px 80px rgba(26,61,43,0.22);
    --sps-radius:       12px;
    --sps-radius-lg:    20px;
    --sps-radius-xl:    28px;
    --sps-header-h:     70px;
    --sps-font-display: 'Playfair Display', Georgia, serif;
    --sps-font-body:    'Inter', system-ui, sans-serif;
    --sps-font-mono:    'DM Mono', monospace;
    --sps-ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --sps-ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --sps-t:            0.3s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

/* ── Base body ─────────────────────────────────────────────── */
body.sps-site {
    font-family: var(--sps-font-body);
    color: var(--sps-text);
    background: var(--sps-bg);
    line-height: 1.6;
    /* Natural scroll — no overflow:hidden, no fixed panels */
}

/* ════════════════════════════════════════════════════════════════
   HEADER  — sticky top, slides in on scroll
   ════════════════════════════════════════════════════════════════ */

.sps-header {
    position: sticky;
    top: 0;
    left: 0; right: 0;
    height: var(--sps-header-h);
    background: var(--sps-primary);
    z-index: 900;
    transition: background 0.4s var(--sps-ease),
                box-shadow 0.4s var(--sps-ease),
                transform 0.35s var(--sps-ease);
    will-change: transform;
}

.sps-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,150,62,0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.sps-header.scrolled {
    background: rgba(13,33,24,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.sps-header.scrolled::after { opacity: 1; }


.sps-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
}

/* Logo */
.sps-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.sps-logo-img { height: 46px; width: auto; object-fit: contain; }

.sps-logo-wordmark {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sps-logo-leaf {
    font-size: 1.5rem;
    display: inline-block;
    animation: leafSway 4s ease-in-out infinite;
    transform-origin: bottom center;
}
@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50%       { transform: rotate(5deg); }
}
.sps-logo-text {
    font-family: var(--sps-font-display);
    font-size: 1.4rem;
    color: var(--sps-white);
    letter-spacing: -0.5px;
    transition: opacity 0.2s;
    line-height: 1;
}
.sps-logo-text strong { color: var(--sps-accent); }
.sps-logo:hover .sps-logo-text { opacity: 0.85; }

/* ── Desktop Nav ───────────────────────────────────────── */
.sps-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 5px 6px;
    backdrop-filter: blur(8px);
}

.sps-nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 14px 6px;
    border-radius: 10px;
    transition: color 0.25s var(--sps-ease), background 0.25s var(--sps-ease);
    letter-spacing: 0.3px;
    min-width: 58px;
    text-align: center;
}

/* Icon */
.sps-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    transition:
        background 0.25s var(--sps-ease),
        transform 0.3s var(--sps-ease-spring),
        box-shadow 0.25s;
    margin-bottom: 1px;
}
.sps-nav-icon svg { transition: stroke 0.25s; }

/* Label */
.sps-nav-label {
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-family: var(--sps-font-mono);
    transition: color 0.25s;
    white-space: nowrap;
}

/* Active dot indicator */
.sps-nav-dot {
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px; height: 4px;
    background: var(--sps-accent);
    border-radius: 50%;
    transition: transform 0.3s var(--sps-ease-spring);
    box-shadow: 0 0 6px var(--sps-accent-glow);
}

/* Hover state */
.sps-nav-link:hover {
    color: var(--sps-white);
    background: rgba(255,255,255,0.07);
}
.sps-nav-link:hover .sps-nav-icon {
    background: rgba(200,150,62,0.15);
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 16px rgba(200,150,62,0.2);
}
.sps-nav-link:hover .sps-nav-dot { transform: translateX(-50%) scale(1); }

/* Active state */
.sps-nav-link.active {
    color: var(--sps-white);
    background: rgba(200,150,62,0.1);
}
.sps-nav-link.active .sps-nav-icon {
    background: linear-gradient(135deg, rgba(200,150,62,0.25), rgba(200,150,62,0.1));
    box-shadow: 0 2px 12px rgba(200,150,62,0.25);
}
.sps-nav-link.active .sps-nav-label { color: var(--sps-accent-lt); }
.sps-nav-link.active .sps-nav-dot { transform: translateX(-50%) scale(1); }

/* Entrance animation — stagger each link */
.sps-nav-link:nth-child(1) { animation: navItemIn 0.5s var(--sps-ease) 0.05s both; }
.sps-nav-link:nth-child(2) { animation: navItemIn 0.5s var(--sps-ease) 0.10s both; }
.sps-nav-link:nth-child(3) { animation: navItemIn 0.5s var(--sps-ease) 0.15s both; }
.sps-nav-link:nth-child(4) { animation: navItemIn 0.5s var(--sps-ease) 0.20s both; }
.sps-nav-link:nth-child(5) { animation: navItemIn 0.5s var(--sps-ease) 0.25s both; }

@keyframes navItemIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CTA button */
.sps-nav-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--sps-accent), var(--sps-accent-lt));
    color: var(--sps-white);
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
    margin-left: 10px;
    transition: transform 0.25s var(--sps-ease-spring), box-shadow 0.25s;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 2px 12px var(--sps-accent-glow);
    animation: navItemIn 0.5s var(--sps-ease) 0.3s both;
    position: relative;
    overflow: hidden;
}
.sps-nav-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.sps-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--sps-accent-glow);
}
.sps-nav-cta:hover::before { transform: translateX(100%); }

.sps-cta-icon { display: flex; align-items: center; flex-shrink: 0; }

/* ── Hamburger ──────────────────────────────────────────── */
.sps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.2s;
}
.sps-hamburger:hover { background: rgba(255,255,255,0.12); }

.sps-ham-line {
    display: block;
    width: 22px; height: 2px;
    background: var(--sps-white);
    border-radius: 2px;
    transition: transform 0.35s var(--sps-ease), opacity 0.2s, width 0.3s;
}
.sps-hamburger.open .sps-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sps-hamburger.open .sps-ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sps-hamburger.open .sps-ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ──────────────────────────────────── */
.sps-mobile-nav {
    display: none;
    background: rgba(10,25,17,0.98);
    border-top: 1px solid rgba(200,150,62,0.15);
    backdrop-filter: blur(20px);
}
.sps-mobile-nav.open {
    display: block;
    animation: mobileDrawerIn 0.3s var(--sps-ease) forwards;
}
@keyframes mobileDrawerIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sps-mobile-nav-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 12px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sps-mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s var(--sps-ease);
    position: relative;
}
.sps-mobile-link:hover,
.sps-mobile-link.active {
    color: var(--sps-white);
    background: rgba(200,150,62,0.08);
    border-color: rgba(200,150,62,0.2);
    padding-left: 20px;
}
.sps-mobile-link.active { color: var(--sps-accent-lt); }

.sps-mob-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 9px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.sps-mobile-link:hover .sps-mob-icon,
.sps-mobile-link.active .sps-mob-icon {
    background: rgba(200,150,62,0.15);
}

.sps-mob-arrow {
    margin-left: auto;
    opacity: 0;
    font-size: 1rem;
    color: var(--sps-accent);
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}
.sps-mobile-link:hover .sps-mob-arrow { opacity: 1; transform: translateX(0); }

.sps-mobile-cta {
    display: block;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--sps-accent), var(--sps-accent-lt));
    color: var(--sps-white);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    transition: transform 0.2s var(--sps-ease-spring), box-shadow 0.2s;
    box-shadow: 0 4px 20px var(--sps-accent-glow);
}
.sps-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--sps-accent-glow);
}


/* ════════════════════════════════════════════════════════════════
   MAIN — natural scroll, no fixed positioning
   ════════════════════════════════════════════════════════════════ */

.sps-main {
    /* Natural document flow — no position:fixed, no overflow constraints */
    display: block;
    width: 100%;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */

.sps-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 28px 80px;
}

/* Multi-layer animated gradient */
.sps-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, #0D4A28 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, #1A3D2B 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 100%, #061A0F 0%, #1A3D2B 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    animation: gradientDrift 16s ease-in-out infinite alternate;
}

@keyframes gradientDrift {
    0%   { background-position: 0% 0%, 100% 100%, center; }
    33%  { background-position: 50% 100%, 0% 50%, center; }
    66%  { background-position: 100% 50%, 50% 0%, center; }
    100% { background-position: 20% 80%, 80% 20%, center; }
}

/* Noise texture overlay for depth */
.sps-hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* Particles */
.sps-hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.sps-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--sps-accent);
    animation: particleDrift var(--dur, 10s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}
@keyframes particleDrift {
    0%   { transform: translate(0,0) scale(0);     opacity: 0; }
    15%  { opacity: var(--peak, 0.5); }
    85%  { opacity: var(--peak, 0.5); }
    100% { transform: translate(var(--tx,20px), var(--ty,-60px)) scale(0.5); opacity: 0; }
}

/* Hero layout */
.sps-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.sps-hero-text { flex: 1; max-width: 580px; }

.sps-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sps-font-mono);
    font-size: 0.78rem;
    color: var(--sps-accent);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 7px 16px;
    border: 1px solid rgba(200,150,62,0.35);
    border-radius: 24px;
    background: rgba(200,150,62,0.08);
    backdrop-filter: blur(8px);
    animation: eyebrowIn 0.8s var(--sps-ease) 0.1s both;
}
@keyframes eyebrowIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sps-hero-headline {
    font-family: var(--sps-font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--sps-white);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    animation: headlineIn 0.9s var(--sps-ease) 0.2s both;
}
/* Accent word highlight */
.sps-hero-headline em {
    font-style: normal;
    color: var(--sps-accent);
    position: relative;
}
@keyframes headlineIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sps-hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    line-height: 1.75;
    animation: subIn 1s var(--sps-ease) 0.35s both;
}
@keyframes subIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sps-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    animation: badgesIn 1s var(--sps-ease) 0.5s both;
}
@keyframes badgesIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sps-badge {
    font-size: 0.78rem;
    font-family: var(--sps-font-mono);
    background: rgba(200,150,62,0.12);
    color: var(--sps-accent-lt);
    border: 1px solid rgba(200,150,62,0.28);
    padding: 5px 14px;
    border-radius: 24px;
    letter-spacing: 0.3px;
    transition: background 0.2s, border-color 0.2s;
}
.sps-badge:hover {
    background: rgba(200,150,62,0.2);
    border-color: rgba(200,150,62,0.5);
}

.sps-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: actionsIn 1s var(--sps-ease) 0.65s both;
}
@keyframes actionsIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Showcase Ring ─────────────────────────────────────────── */
.sps-showcase-ring {
    position: relative;
    width: 440px; height: 440px;
    flex-shrink: 0;
    animation: ringAppear 1.2s var(--sps-ease) 0.3s both;
}
@keyframes ringAppear {
    from { opacity: 0; transform: scale(0.8) rotate(-20deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.sps-ring-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    background: conic-gradient(from 180deg, #C8963E, #E8B86D, #C8963E, #8B6914, #C8963E);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: coreSpin 12s linear infinite, corePulse 3s ease-in-out infinite;
    box-shadow:
        0 0 0 8px rgba(26,61,43,0.9),
        0 0 0 9px rgba(200,150,62,0.3),
        0 0 40px rgba(200,150,62,0.5),
        0 0 80px rgba(200,150,62,0.2);
}
.sps-ring-core-inner {
    position: absolute;
    inset: 6px;
    background: var(--sps-primary-dk);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@keyframes coreSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(26,61,43,0.9), 0 0 0 9px rgba(200,150,62,0.3), 0 0 40px rgba(200,150,62,0.5), 0 0 80px rgba(200,150,62,0.2); }
    50%       { box-shadow: 0 0 0 8px rgba(26,61,43,0.9), 0 0 0 9px rgba(200,150,62,0.4), 0 0 60px rgba(200,150,62,0.7), 0 0 120px rgba(200,150,62,0.3); }
}

.sps-ring-icon  { font-size: 2rem; position: relative; z-index: 1; }
.sps-ring-label {
    font-family: var(--sps-font-mono);
    font-size: 0.55rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 2px;
    position: relative; z-index: 1;
}

/* Orbit track */
.sps-showcase-ring::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 340px; height: 340px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(200,150,62,0.18);
    box-shadow: 0 0 20px rgba(200,150,62,0.05) inset;
    animation: trackGlow 4s ease-in-out infinite;
}
/* Inner track */
.sps-showcase-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 220px; height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(200,150,62,0.1);
}
@keyframes trackGlow {
    0%, 100% { border-color: rgba(200,150,62,0.15); }
    50%       { border-color: rgba(200,150,62,0.35); }
}

.sps-ring-item {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    --radius: 170px;
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(calc(-1 * var(--radius)));
    animation: orbitForward 24s linear infinite;
    animation-delay: var(--orbit-delay, 0s);
}
@keyframes orbitForward {
    to {
        transform:
            translate(-50%, -50%)
            rotate(calc(var(--angle) + 360deg))
            translateY(calc(-1 * var(--radius)));
    }
}

.sps-ring-node {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: rgba(13, 33, 24, 0.92);
    border: 1px solid rgba(200,150,62,0.3);
    border-radius: 12px;
    padding: 9px 12px;
    min-width: 76px;
    text-align: center;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--sps-ease-spring);
    animation: counterOrbit 24s linear infinite;
    animation-delay: var(--orbit-delay, 0s);
}
.sps-ring-node:hover {
    background: rgba(200,150,62,0.18);
    border-color: var(--sps-accent);
    box-shadow: 0 0 20px var(--sps-accent-glow);
    transform: translate(-50%, -50%) scale(1.15);
}
@keyframes counterOrbit { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.sps-node-icon  { font-size: 1.3rem; }
.sps-node-label {
    font-size: 0.54rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--sps-font-mono);
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* Scroll indicator */
.sps-scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    font-family: var(--sps-font-mono);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollHint 2.5s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 0.75; transform: translateX(-50%) translateY(-6px); }
}
.sps-scroll-arrow {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, rgba(200,150,62,0.7), transparent);
    position: relative;
}
.sps-scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    border-right: 1.5px solid rgba(200,150,62,0.5);
    border-bottom: 1.5px solid rgba(200,150,62,0.5);
    transform: translateX(-50%) rotate(45deg);
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */

.sps-stats-bar {
    background: var(--sps-primary);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.sps-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--sps-primary-dk), var(--sps-primary), var(--sps-primary-dk));
    background-size: 200% 100%;
    animation: statsBg 8s ease-in-out infinite alternate;
}
@keyframes statsBg {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

.sps-stats-inner {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sps-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 36px 52px;
    position: relative;
    flex: 1;
    min-width: 160px;
}
.sps-stat + .sps-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(200,150,62,0.2);
}

.sps-stat-num {
    font-family: var(--sps-font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sps-accent);
    line-height: 1;
    transition: transform 0.3s var(--sps-ease-spring);
}
.sps-stat:hover .sps-stat-num { transform: scale(1.08); }

.sps-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--sps-font-mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ════════════════════════════════════════════════════════════════ */

.sps-section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 88px 28px;
}

.sps-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.sps-eyebrow {
    display: inline-block;
    font-family: var(--sps-font-mono);
    font-size: 0.73rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sps-primary-lt);
    margin-bottom: 14px;
}

.sps-section-title {
    font-family: var(--sps-font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--sps-primary);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.sps-section-sub {
    font-size: 1rem;
    color: var(--sps-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY GRID
   ════════════════════════════════════════════════════════════════ */

.sps-categories { background: var(--sps-bg); }

.sps-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.sps-cat-card {
    background: var(--sps-white);
    border: 1.5px solid transparent;
    border-radius: var(--sps-radius-xl);
    padding: 30px 22px 26px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s var(--sps-ease-spring),
        box-shadow 0.35s var(--sps-ease),
        border-color 0.25s;
    box-shadow: var(--sps-shadow);
}

.sps-cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-color, var(--sps-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--sps-ease);
}

/* Hover shimmer */
.sps-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 60%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.sps-cat-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--sps-shadow-lg);
    border-color: var(--card-color, var(--sps-primary));
}
.sps-cat-card:hover::before  { transform: scaleX(1); }
.sps-cat-card:hover::after   { transform: translateX(100%); }

.sps-cat-icon { font-size: 2.4rem; transition: transform 0.3s var(--sps-ease-spring); }
.sps-cat-card:hover .sps-cat-icon { transform: scale(1.15) rotate(-5deg); }

.sps-cat-name {
    font-family: var(--sps-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sps-text);
    line-height: 1.3;
}

.sps-cat-count {
    font-size: 0.72rem;
    color: var(--sps-text-muted);
    font-family: var(--sps-font-mono);
}

.sps-cat-arrow {
    position: absolute;
    bottom: 18px; right: 22px;
    color: var(--card-color, var(--sps-primary));
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--sps-ease);
}
.sps-cat-card:hover .sps-cat-arrow { opacity: 1; transform: translateX(0); }

.sps-categories-cta { text-align: center; margin-top: 44px; }

/* ════════════════════════════════════════════════════════════════
   FEATURED PRODUCTS SLIDER
   ════════════════════════════════════════════════════════════════ */

.sps-featured { background: var(--sps-bg-alt); }

.sps-products-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    padding-top: 4px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}
.sps-products-slider:active { cursor: grabbing; }
.sps-products-slider::-webkit-scrollbar { height: 3px; }
.sps-products-slider::-webkit-scrollbar-thumb { background: var(--sps-accent); border-radius: 2px; opacity: 0.4; }

.sps-product-card {
    min-width: 270px;
    max-width: 290px;
    background: var(--sps-white);
    border-radius: var(--sps-radius-xl);
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: var(--sps-shadow);
    transition: transform 0.35s var(--sps-ease-spring), box-shadow 0.3s;
    position: relative;
    border: 1.5px solid transparent;
}
.sps-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sps-shadow-lg);
    border-color: rgba(200,150,62,0.2);
}

.sps-prod-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--sps-accent), var(--sps-accent-lt));
    color: var(--sps-white);
    font-size: 0.68rem;
    font-family: var(--sps-font-mono);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 24px;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 2px 12px var(--sps-accent-glow);
}

.sps-prod-image-wrap {
    height: 185px;
    background: linear-gradient(135deg, #F0EDE3, #E8E3D5);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.sps-prod-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
}
.sps-prod-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--sps-ease); }
.sps-product-card:hover .sps-prod-img { transform: scale(1.06); }
.sps-prod-placeholder {
    font-size: 3.8rem;
    opacity: 0.5;
    transition: transform 0.3s var(--sps-ease-spring), opacity 0.3s;
}
.sps-product-card:hover .sps-prod-placeholder { transform: scale(1.1); opacity: 0.7; }

.sps-prod-info { padding: 20px; }
.sps-prod-cat {
    font-size: 0.68rem;
    font-family: var(--sps-font-mono);
    color: var(--sps-primary-lt);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.sps-prod-name {
    font-family: var(--sps-font-display);
    font-size: 1.07rem;
    font-weight: 700;
    color: var(--sps-text);
    margin: 5px 0 7px;
    line-height: 1.3;
}
.sps-prod-sizes { font-size: 0.78rem; color: var(--sps-text-muted); margin-bottom: 6px; }
.sps-prod-desc  { font-size: 0.82rem; color: var(--sps-text-muted); line-height: 1.55; margin-bottom: 18px; }

/* Slider controls */
.sps-slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.sps-slider-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 2px solid var(--sps-primary);
    background: none;
    color: var(--sps-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s var(--sps-ease-spring);
}
.sps-slider-btn:hover {
    background: var(--sps-primary);
    color: var(--sps-white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(26,61,43,0.2);
}

/* ════════════════════════════════════════════════════════════════
   WHY SPECS
   ════════════════════════════════════════════════════════════════ */

.sps-why {
    background: var(--sps-primary);
    position: relative;
    overflow: hidden;
}
.sps-why::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,150,62,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.sps-why::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,106,79,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sps-why .sps-section-title { color: var(--sps-white); }
.sps-why .sps-eyebrow { color: var(--sps-accent); }
.sps-why-inner { position: relative; z-index: 1; }

.sps-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

.sps-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--sps-radius-xl);
    padding: 34px 30px;
    transition: all 0.35s var(--sps-ease);
    position: relative;
    overflow: hidden;
}
.sps-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,150,62,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.sps-why-card:hover {
    background: rgba(200,150,62,0.07);
    border-color: rgba(200,150,62,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.sps-why-card:hover::before { opacity: 1; }

.sps-why-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
    display: block;
    transition: transform 0.3s var(--sps-ease-spring);
}
.sps-why-card:hover .sps-why-icon { transform: scale(1.15) rotate(-5deg); }

.sps-why-card h3 {
    font-family: var(--sps-font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--sps-white);
    margin-bottom: 10px;
}
.sps-why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════
   ABOUT STRIP
   ════════════════════════════════════════════════════════════════ */

.sps-about-strip { background: var(--sps-bg-alt); }

.sps-about-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 88px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.sps-about-text .sps-eyebrow { color: var(--sps-accent); }
.sps-about-text h2 {
    font-family: var(--sps-font-display);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--sps-primary);
    margin: 14px 0 22px;
    letter-spacing: -0.5px;
}
.sps-about-text p { color: var(--sps-text-muted); line-height: 1.82; margin-bottom: 18px; font-size: 0.97rem; }
.sps-about-mission { font-style: italic; color: var(--sps-primary-lt) !important; font-size: 1.05rem !important; }

.sps-about-grid-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sps-img-tile {
    aspect-ratio: 1;
    border-radius: var(--sps-radius-xl);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.2rem;
    transition: transform 0.35s var(--sps-ease-spring), box-shadow 0.3s;
    box-shadow: var(--sps-shadow);
}
.sps-img-tile:hover { transform: scale(1.06) rotate(-2deg); box-shadow: var(--sps-shadow-lg); }
.sps-tile-1 { background: var(--sps-primary); }
.sps-tile-2 { background: var(--sps-primary-lt); transform: translateY(14px); }
.sps-tile-3 { background: var(--sps-accent); transform: translateY(-14px); }
.sps-tile-4 { background: #354F52; }

/* ════════════════════════════════════════════════════════════════
   PARTNERS
   ════════════════════════════════════════════════════════════════ */

.sps-partners-bar { background: var(--sps-white); }

.sps-partners-grid {
    display: flex; flex-wrap: wrap;
    gap: 20px;
    justify-content: center; align-items: center;
}

.sps-partner-logo {
    display: flex; align-items: center; justify-content: center;
    padding: 18px 28px;
    border: 1.5px solid var(--sps-border);
    border-radius: var(--sps-radius-lg);
    transition: all 0.3s var(--sps-ease);
    min-width: 150px;
}
.sps-partner-logo:hover {
    border-color: var(--sps-primary);
    transform: translateY(-3px);
    box-shadow: var(--sps-shadow-lg);
}
.sps-partner-logo img {
    max-height: 52px; width: auto;
    filter: grayscale(1); opacity: 0.65;
    transition: all 0.3s;
}
.sps-partner-logo:hover img { filter: grayscale(0); opacity: 1; }
.sps-partner-name { font-family: var(--sps-font-display); font-weight: 700; color: var(--sps-text-muted); }

/* ════════════════════════════════════════════════════════════════
   CONTACT / QUOTE
   ════════════════════════════════════════════════════════════════ */

.sps-contact { background: var(--sps-bg); }

.sps-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}

.sps-contact-info h2 {
    font-family: var(--sps-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sps-primary);
    margin: 14px 0 20px;
}
.sps-contact-info > p { color: var(--sps-text-muted); line-height: 1.75; margin-bottom: 28px; }

.sps-contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.sps-contact-detail { display: flex; gap: 12px; align-items: flex-start; }
.sps-cd-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.sps-contact-detail a { color: var(--sps-primary-lt); text-decoration: none; transition: color 0.2s; }
.sps-contact-detail a:hover { color: var(--sps-accent); }

/* Social icons */
.sps-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.sps-social-link {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--sps-primary);
    color: var(--sps-white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s var(--sps-ease-spring);
    text-decoration: none;
}
.sps-social-link:hover { background: var(--sps-accent); transform: translateY(-3px) scale(1.08); box-shadow: 0 6px 20px var(--sps-accent-glow); }
.sps-social-link svg { width: 18px; height: 18px; }

/* Quote form */
.sps-quote-form-wrap {
    background: var(--sps-white);
    border-radius: var(--sps-radius-xl);
    padding: 38px 34px;
    box-shadow: var(--sps-shadow-xl);
    border: 1px solid var(--sps-border);
    transition: box-shadow 0.3s;
}
.sps-quote-form-wrap:hover { box-shadow: var(--sps-shadow-xl); }

.sps-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

.sps-input, .sps-textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid var(--sps-border);
    border-radius: 11px;
    font-family: var(--sps-font-body);
    font-size: 0.9rem;
    color: var(--sps-text);
    background: #FAFAF8;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}
.sps-input:focus, .sps-textarea:focus {
    border-color: var(--sps-primary);
    background: var(--sps-white);
    box-shadow: 0 0 0 4px rgba(26,61,43,0.08);
}
.sps-input::placeholder, .sps-textarea::placeholder { color: var(--sps-text-muted); opacity: 0.6; }
.sps-input-full { width: 100%; margin-bottom: 12px; }
.sps-textarea { resize: vertical; margin-bottom: 18px; }

.sps-form-result {
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 11px;
    font-size: 0.88rem;
    display: none;
    animation: resultIn 0.3s var(--sps-ease);
}
@keyframes resultIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: translateY(0); } }
.sps-form-result.success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; display: block; }
.sps-form-result.error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */

.sps-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 30px;
    border-radius: 11px;
    font-family: var(--sps-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--sps-ease-spring);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}
/* Ripple effect */
.sps-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.sps-btn:hover::after { transform: scaleX(1); }

.sps-btn-primary {
    background: var(--sps-accent);
    color: var(--sps-white);
    border-color: var(--sps-accent);
}
.sps-btn-primary:hover {
    background: var(--sps-accent-lt);
    border-color: var(--sps-accent-lt);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--sps-accent-glow);
}

.sps-btn-outline {
    background: transparent;
    color: var(--sps-white);
    border-color: rgba(255,255,255,0.38);
}
.sps-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.sps-btn-outline-light {
    background: transparent;
    color: var(--sps-primary);
    border-color: var(--sps-primary);
}
.sps-btn-outline-light:hover { background: var(--sps-primary); color: var(--sps-white); transform: translateY(-2px); }

.sps-btn-sm { padding: 8px 20px; font-size: 0.82rem; border-radius: 9px; }
.sps-btn-full { width: 100%; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.sps-footer {
    background: var(--sps-bg-dark);
    height: auto;
    padding: 18px 0;
    position: relative; /* natural flow, not fixed */
}

.sps-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sps-footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-family: var(--sps-font-mono); }

.sps-footer-social { display: flex; gap: 8px; }
.sps-footer-social-link {
    width: 32px; height: 32px;
    border-radius: 7px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s var(--sps-ease-spring);
    text-decoration: none;
}
.sps-footer-social-link:hover { background: var(--sps-accent); color: var(--sps-white); transform: translateY(-2px); }

.sps-footer-links { display: flex; gap: 18px; }
.sps-footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.sps-footer-links a:hover { color: var(--sps-accent); }

/* ════════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════════ */

.sps-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}
.sps-modal-overlay.open { display: flex; }

.sps-modal {
    background: var(--sps-white);
    border-radius: var(--sps-radius-xl);
    padding: 40px 36px;
    width: 100%; max-width: 520px;
    position: relative;
    box-shadow: 0 32px 100px rgba(0,0,0,0.35);
    animation: modalIn 0.3s var(--sps-ease-spring);
}
@keyframes modalIn {
    from { opacity:0; transform: scale(0.92) translateY(24px); }
    to   { opacity:1; transform: scale(1)    translateY(0); }
}

.sps-modal-close {
    position: absolute; top: 18px; right: 18px;
    background: #F3F4F6; border: none; cursor: pointer;
    font-size: 0.9rem; color: var(--sps-text-muted);
    padding: 6px 10px; border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.sps-modal-close:hover { background: #E5E7EB; color: var(--sps-text); }
.sps-modal h3 { font-family: var(--sps-font-display); font-size: 1.55rem; color: var(--sps-primary); margin-bottom: 6px; }
.sps-modal-product { color: var(--sps-accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 22px; }

/* ════════════════════════════════════════════════════════════════
   SCROLL REVEAL — JS adds .sps-visible
   ════════════════════════════════════════════════════════════════ */

.sps-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--sps-ease), transform 0.65s var(--sps-ease);
}
.sps-reveal.sps-visible {
    opacity: 1;
    transform: translateY(0);
}
.sps-reveal-delay-1 { transition-delay: 0.08s; }
.sps-reveal-delay-2 { transition-delay: 0.16s; }
.sps-reveal-delay-3 { transition-delay: 0.24s; }
.sps-reveal-delay-4 { transition-delay: 0.32s; }
.sps-reveal-delay-5 { transition-delay: 0.40s; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .sps-hero-content { gap: 40px; }
    .sps-showcase-ring { width: 360px; height: 360px; }
    .sps-ring-item { --radius: 140px; }
    .sps-about-inner { grid-template-columns: 1fr; gap: 48px; }
    .sps-contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .sps-nav { display: none; }
    .sps-nav-cta { display: none; }
    .sps-hamburger { display: flex; }

    .sps-hero { min-height: 90vh; padding: 80px 20px 60px; }
    .sps-hero-content { flex-direction: column; text-align: center; gap: 52px; }
    .sps-hero-badges { justify-content: center; }
    .sps-hero-actions { justify-content: center; }

    .sps-showcase-ring { width: 300px; height: 300px; }
    .sps-ring-item { --radius: 115px; }
    .sps-ring-node { min-width: 64px; padding: 7px 9px; }

    .sps-stats-inner { gap: 0; }
    .sps-stat { padding: 24px 28px; }
    .sps-stat-num { font-size: 2rem; }

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

    .sps-form-row { grid-template-columns: 1fr; }
    .sps-quote-form-wrap { padding: 26px 20px; }

    .sps-section-inner { padding: 64px 20px; }
    .sps-about-inner   { padding: 64px 20px; }

    .sps-footer-inner { flex-direction: column; gap: 10px; text-align: center; }
    .sps-footer-links { justify-content: center; }

    .sps-tile-2 { transform: none; }
    .sps-tile-3 { transform: none; }
}

@media (max-width: 480px) {
    .sps-category-grid { grid-template-columns: 1fr; }
    .sps-hero-headline { font-size: 2.2rem; letter-spacing: -0.5px; }
    .sps-showcase-ring { width: 240px; height: 240px; }
    .sps-ring-item { --radius: 90px; }
    .sps-ring-node { min-width: 56px; }
    .sps-ring-core { width: 90px; height: 90px; }
    .sps-ring-icon { font-size: 1.5rem; }
    .sps-section-inner { padding: 52px 16px; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .sps-hero-gradient,
    .sps-particle,
    .sps-ring-item,
    .sps-ring-node,
    .sps-ring-core,
    .sps-showcase-ring,
    .sps-scroll-hint,
    .sps-stats-bar::before { animation: none !important; }
    .sps-reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════════════
   WP ADMIN BAR OFFSET
   Sticky header must sit below the admin bar when logged in
   ════════════════════════════════════════════════════════════════ */
body.admin-bar .sps-header { top: 32px; }

@media screen and (max-width: 782px) {
    body.admin-bar .sps-header { top: 46px; }
}

/* ════════════════════════════════════════════════════════════════
   THEME RESET — neutralise Divi / theme wrappers on SPS pages
   ════════════════════════════════════════════════════════════════ */
body.sps-site #page-container,
body.sps-site #et-main-area,
body.sps-site #main-content,
body.sps-site .entry-content,
body.sps-site .et_pb_post_content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: transparent !important;
}

/* Divi wraps shortcode output — let our sections go full width */
body .sps-shortcode-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: var(--sps-bg);
}

/* Our footer is never fixed */
.sps-footer {
    position: relative !important;
    bottom: auto !important;
    height: auto !important;
}

/* Body scrolls with the document — never its own scroll container */
body.sps-site {
    overflow: visible !important;
    height: auto !important;
}

/* Main is never a fixed panel */
.sps-main {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    top: auto !important;
    bottom: auto !important;
}

/* ════════════════════════════════════════════════════════════════
   FLOATING HEADER — always visible, glass pill on scroll
   ════════════════════════════════════════════════════════════════ */

/* Never hide the header, whatever else says otherwise */
.sps-header,
.sps-header.hide {
    transform: none !important;
    position: sticky !important;
    top: 0;
    z-index: 9999;
}
body.admin-bar .sps-header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .sps-header { top: 46px; }
}

/* Base header — smooth transition into floating state */
.sps-header {
    transition:
        background 0.45s var(--sps-ease),
        box-shadow 0.45s var(--sps-ease),
        padding 0.45s var(--sps-ease),
        backdrop-filter 0.45s var(--sps-ease);
    will-change: background, box-shadow;
}

/* Scrolled — frosted glass */
.sps-header.scrolled {
    background: rgba(13, 33, 24, 0.82);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
        0 4px 30px rgba(0,0,0,0.28),
        inset 0 -1px 0 rgba(200,150,62,0.18);
}

/* Floating — detaches into a rounded pill */
.sps-header.floating {
    padding: 8px 0;
}
.sps-header.floating .sps-header-inner {
    max-width: 1180px;
    background: rgba(13, 33, 24, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(200,150,62,0.18);
    border-radius: 18px;
    padding: 8px 18px;
    height: 58px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.32),
        0 0 0 1px rgba(255,255,255,0.03) inset;
    animation: headerFloatIn 0.5s var(--sps-ease-spring) both;
}

@keyframes headerFloatIn {
    from { transform: translateY(-8px) scale(0.985); opacity: 0.85; }
    to   { transform: translateY(0)    scale(1);     opacity: 1; }
}

/* Header inner transitions smoothly between states */
.sps-header-inner {
    transition:
        max-width 0.45s var(--sps-ease),
        background 0.45s var(--sps-ease),
        border-radius 0.45s var(--sps-ease),
        height 0.45s var(--sps-ease),
        box-shadow 0.45s var(--sps-ease),
        padding 0.45s var(--sps-ease);
}

/* Logo shrinks slightly when floating */
.sps-header.floating .sps-logo-img { height: 38px; }
.sps-header.floating .sps-logo-text { font-size: 1.22rem; }
.sps-logo-img, .sps-logo-text {
    transition: height 0.4s var(--sps-ease), font-size 0.4s var(--sps-ease);
}

/* Nav pill tightens when floating */
.sps-header.floating .sps-nav {
    background: rgba(255,255,255,0.05);
    padding: 4px 5px;
}
.sps-header.floating .sps-nav-link { padding: 6px 12px 5px; }
.sps-header.floating .sps-nav-icon { width: 24px; height: 24px; }
.sps-header.floating .sps-nav-cta { padding: 8px 17px; font-size: 0.8rem; }

/* Animated gradient underline across the whole header */
.sps-header::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--sps-accent) 20%,
        var(--sps-accent-lt) 50%,
        var(--sps-accent) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s var(--sps-ease);
    animation: headerLineSweep 4s linear infinite;
    pointer-events: none;
}
.sps-header.scrolled::before { opacity: 0.55; }
.sps-header.floating::before { opacity: 0; }

@keyframes headerLineSweep {
    0%   { background-position: -100% 0; }
    100% { background-position:  100% 0; }
}

/* Scroll-progress bar along the very bottom of the header */
.sps-scroll-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--sps-accent), var(--sps-accent-lt));
    box-shadow: 0 0 10px var(--sps-accent-glow);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    z-index: 2;
}
.sps-header.floating .sps-scroll-progress {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1180px;
    border-radius: 2px;
}

/* Nav icon micro-interaction — gentle idle float on the active item */
.sps-nav-link.active .sps-nav-icon {
    animation: activeIconFloat 3s ease-in-out infinite;
}
@keyframes activeIconFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-2px); }
}

/* CTA gets a slow ambient glow pulse */
.sps-nav-cta {
    animation: ctaGlow 3.5s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 2px 12px var(--sps-accent-glow); }
    50%       { box-shadow: 0 4px 22px var(--sps-accent-glow), 0 0 0 3px rgba(200,150,62,0.08); }
}
.sps-nav-cta:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
    .sps-header::before,
    .sps-nav-cta,
    .sps-nav-link.active .sps-nav-icon,
    .sps-header.floating .sps-header-inner { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SCROLLING — one scroll container (the document), nothing nested
   ════════════════════════════════════════════════════════════════ */

html {
    scroll-behavior: auto;
    /* clip prevents horizontal overflow WITHOUT creating a scroll container,
       unlike overflow-x:hidden which forces overflow-y into a scroll context */
    overflow-x: clip;
    overflow-y: auto;
    scroll-padding-top: 90px; /* anchor links clear the sticky header */
}

body.sps-site {
    overflow: visible !important;
    height: auto !important;
    min-height: 100%;
    position: static !important;
}

/* No inner element may become its own scroll container */
.sps-main,
.sps-shortcode-wrap,
#page-container,
#et-main-area,
#main-content {
    overflow: visible !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
}

/* Sections clip their own decoration only — never trap the wheel */
.sps-hero,
.sps-why,
.sps-stats-bar {
    overflow: hidden;
    overscroll-behavior: auto;
}

/* The only intentional horizontal scroller: the product slider */
.sps-products-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain; /* stops it hijacking vertical page scroll */
    touch-action: pan-x pan-y;
}

/* Touch devices: let the browser handle scrolling natively */
body.sps-site,
.sps-main {
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

/* ════════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR — gold gradient, glows on hover
   ════════════════════════════════════════════════════════════════ */

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--sps-accent) rgba(26, 61, 43, 0.08);
}

/* WebKit / Chromium / Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(
        180deg,
        rgba(26, 61, 43, 0.06),
        rgba(26, 61, 43, 0.12)
    );
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--sps-accent-lt) 0%,
        var(--sps-accent) 45%,
        #A87A2E 100%
    );
    border-radius: 10px;
    border: 2.5px solid transparent;
    background-clip: content-box;
    transition: background 0.25s ease;
    min-height: 48px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #F0C87E 0%,
        var(--sps-accent-lt) 50%,
        var(--sps-accent) 100%
    );
    background-clip: content-box;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--sps-accent), #8B6914);
    background-clip: content-box;
}

::-webkit-scrollbar-corner { background: transparent; }

/* Slider scrollbar — slimmer, matches the page */
.sps-products-slider::-webkit-scrollbar { height: 8px; }
.sps-products-slider::-webkit-scrollbar-track {
    background: rgba(26, 61, 43, 0.07);
    border-radius: 8px;
}
.sps-products-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--sps-accent-lt), var(--sps-accent));
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: content-box;
}

/* ── Back-to-top button ────────────────────────────────────────── */
.sps-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--sps-accent), var(--sps-accent-lt));
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px var(--sps-accent-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition:
        opacity 0.35s var(--sps-ease),
        transform 0.35s var(--sps-ease-spring),
        visibility 0.35s,
        box-shadow 0.25s;
    z-index: 998;
}
.sps-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.sps-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 34px var(--sps-accent-glow);
}
.sps-to-top:active { transform: translateY(-1px) scale(1.02); }

/* Progress ring around the button */
.sps-to-top svg {
    position: absolute;
    inset: -4px;
    width: 58px; height: 58px;
    transform: rotate(-90deg);
    pointer-events: none;
}
.sps-to-top svg circle {
    fill: none;
    stroke: rgba(255,255,255,0.85);
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 768px) {
    .sps-to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; font-size: 18px; }
    .sps-to-top svg { inset: -4px; width: 54px; height: 54px; }
    ::-webkit-scrollbar { width: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .sps-to-top { transition: opacity 0.2s; }
}

/* ════════════════════════════════════════════════════════════════
   SCROLL TRAP FIX
   `overflow:hidden` creates a scroll container — the wheel can get
   captured by it even with no visible scrollbar. `overflow:clip`
   clips identically but creates NO scroll container, so the wheel
   always reaches the page.
   ════════════════════════════════════════════════════════════════ */

.sps-hero,
.sps-stats-bar,
.sps-why,
.sps-about-strip,
.sps-categories,
.sps-featured,
.sps-contact,
.sps-partners-bar,
.sps-section-inner,
.sps-shortcode-wrap,
.sps-hero-particles,
.sps-hero-gradient,
.sps-showcase-ring,
.sps-cat-card,
.sps-why-card,
.sps-product-card,
.sps-prod-image-wrap,
.sps-btn,
.sps-nav,
.sps-nav-cta,
.sps-header,
.sps-header-inner,
.sps-partner-logo,
.sps-quote-form-wrap,
.sps-img-tile {
    overflow: clip !important;
    overflow-clip-margin: 0;
    overscroll-behavior: auto !important;
}

/* Fallback for browsers without overflow:clip — keep hidden but
   explicitly allow scroll chaining so the page still moves. */
@supports not (overflow: clip) {
    .sps-hero,
    .sps-stats-bar,
    .sps-why,
    .sps-cat-card,
    .sps-why-card,
    .sps-product-card,
    .sps-btn {
        overflow: hidden !important;
        overscroll-behavior: auto !important;
    }
}

/* Nothing anywhere may block scroll chaining to the page */
body.sps-site,
body.sps-site * {
    overscroll-behavior-y: auto;
}

/* Except the product slider, which contains only its horizontal scroll */
.sps-products-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
}

/* Decorative layers must never receive pointer or wheel events */
.sps-hero-gradient,
.sps-hero-particles,
.sps-particle,
.sps-scroll-hint,
.sps-why::before,
.sps-why::after,
.sps-cat-card::after,
.sps-btn::after,
.sps-header::before {
    pointer-events: none !important;
}

/* The orbiting ring is decorative — let the wheel pass through it,
   but keep the individual nodes clickable. */
.sps-showcase-ring,
.sps-ring-item {
    pointer-events: none;
}
.sps-ring-node {
    pointer-events: auto;
}

/* ════════════════════════════════════════════════════════════════
   SCROLL PERFORMANCE
   Native wheel speed — nothing animating the scroll itself,
   and offscreen work skipped by the browser.
   ════════════════════════════════════════════════════════════════ */

/* Never animate the document scroll — that's what felt "slow" */
html { scroll-behavior: auto !important; }

/* Skip rendering work for sections that are off screen */
.sps-categories,
.sps-featured,
.sps-why,
.sps-about-strip,
.sps-partners-bar,
.sps-contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

/* Promote only what actually moves; everything else stays on the CPU-cheap path */
.sps-header { will-change: background; }
.sps-to-top { will-change: transform, opacity; }

/* backdrop-filter is expensive on every scroll frame — keep it to the header,
   and drop it entirely on mobile where it costs the most */
@media (max-width: 900px) {
    .sps-header.scrolled,
    .sps-header.floating .sps-header-inner,
    .sps-modal-overlay,
    .sps-ring-node,
    .sps-hero-eyebrow {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .sps-header.scrolled { background: rgba(13,33,24,0.96); }
    .sps-header.floating .sps-header-inner { background: rgba(13,33,24,0.96); }
}

/* Pause the expensive infinite animations while the user is scrolling */
body.sps-scrolling .sps-hero-gradient,
body.sps-scrolling .sps-particle,
body.sps-scrolling .sps-ring-item,
body.sps-scrolling .sps-ring-node,
body.sps-scrolling .sps-ring-core,
body.sps-scrolling .sps-header::before,
body.sps-scrolling .sps-nav-cta,
body.sps-scrolling .sps-stats-bar::before {
    animation-play-state: paused !important;
}

/* Particles are decorative — hide them on small screens entirely */
@media (max-width: 768px) {
    .sps-hero-particles { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   BACK TO TOP — expands into a labelled pill near the page bottom
   ════════════════════════════════════════════════════════════════ */

.sps-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    height: 52px;
    width: 52px;
    padding: 0;
    border-radius: 26px;
    border: none;
    background: linear-gradient(135deg, var(--sps-accent), var(--sps-accent-lt));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
    box-shadow: 0 6px 24px var(--sps-accent-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition:
        opacity   0.35s var(--sps-ease),
        transform 0.35s var(--sps-ease-spring),
        visibility 0.35s,
        width     0.4s  var(--sps-ease-spring),
        padding   0.4s  var(--sps-ease-spring),
        box-shadow 0.25s;
    z-index: 998;
    overflow: visible !important;
}

.sps-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sps-to-top-arrow {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s var(--sps-ease-spring);
}
.sps-to-top:hover .sps-to-top-arrow { transform: translateY(-3px); }

/* Label — hidden by default, revealed when expanded */
.sps-to-top-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    font-family: var(--sps-font-body);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    transition:
        max-width 0.4s var(--sps-ease-spring),
        opacity   0.3s var(--sps-ease) 0.08s,
        margin    0.4s var(--sps-ease-spring);
    margin-left: 0;
}

/* Expanded state — near page bottom, or on hover */
.sps-to-top.expanded,
.sps-to-top:hover {
    width: auto;
    padding: 0 22px 0 18px;
    gap: 9px;
}
.sps-to-top.expanded .sps-to-top-label,
.sps-to-top:hover .sps-to-top-label {
    max-width: 160px;
    opacity: 1;
    margin-left: 2px;
}

.sps-to-top:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 38px var(--sps-accent-glow);
}
.sps-to-top:active { transform: translateY(-1px) scale(1.0); }

/* Gentle attention nudge when it first expands at the bottom */
.sps-to-top.expanded {
    animation: toTopNudge 2.4s ease-in-out infinite;
}
@keyframes toTopNudge {
    0%, 100% { box-shadow: 0 6px 24px var(--sps-accent-glow); }
    50%       { box-shadow: 0 10px 34px var(--sps-accent-glow), 0 0 0 4px rgba(200,150,62,0.12); }
}
.sps-to-top.expanded:hover { animation-play-state: paused; }

/* Progress ring */
.sps-to-top svg {
    position: absolute;
    top: -3px; left: -3px;
    width: 58px; height: 58px;
    transform: rotate(-90deg);
    pointer-events: none;
    transition: opacity 0.3s;
}
.sps-to-top svg circle {
    fill: none;
    stroke: rgba(255,255,255,0.9);
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.12s linear;
}
/* Ring hides when expanded — the pill shape no longer matches a circle */
.sps-to-top.expanded svg,
.sps-to-top:hover svg { opacity: 0; }

@media (max-width: 768px) {
    .sps-to-top { bottom: 18px; right: 18px; height: 48px; width: 48px; border-radius: 24px; }
    .sps-to-top svg { width: 54px; height: 54px; }
    .sps-to-top.expanded { padding: 0 18px 0 15px; }
    .sps-to-top-label { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .sps-to-top,
    .sps-to-top.expanded { animation: none !important; transition: opacity 0.2s; }
}
