/* ===== SERVICE PAGE - SITES & LANDING PAGES ===== */
/* Inherits vars from style.css: --primary-color, --dark-bg, --dark-secondary, --text-color, --text-secondary */

/* ---- HERO SECTION ---- */
.sp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #0a0a0a 0%, #121212 40%, #1a1200 100%);
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.sp-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.sp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #FFB800;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.sp-hero-badge i {
    font-size: 0.75rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.sp-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.sp-hero h1 .sp-highlight {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.sp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFB800 0%, #e6a600 100%);
    color: #000;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.sp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.35);
    color: #000;
}

.sp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFB800;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 184, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.sp-btn-outline:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: #FFB800;
    color: #FFB800;
    transform: translateY(-3px);
}

/* Hero Visual - Floating Browser Mockup */
.sp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-browser-mockup {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.sp-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #252525;
    border-bottom: 1px solid #333;
}

.sp-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sp-browser-dot:nth-child(1) {
    background: #ff5f57;
}

.sp-browser-dot:nth-child(2) {
    background: #ffbd2e;
}

.sp-browser-dot:nth-child(3) {
    background: #28ca41;
}

.sp-browser-url {
    flex: 1;
    background: #1a1a1a;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: #888;
    margin-left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-browser-url i {
    color: #28ca41;
    font-size: 0.7rem;
}

.sp-browser-content {
    padding: 30px;
    min-height: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    opacity: 0;
    animation: typeIn 0.5s ease forwards;
}

.sp-code-line:nth-child(1) {
    animation-delay: 0.5s;
}

.sp-code-line:nth-child(2) {
    animation-delay: 1s;
}

.sp-code-line:nth-child(3) {
    animation-delay: 1.5s;
}

.sp-code-line:nth-child(4) {
    animation-delay: 2s;
}

.sp-code-line:nth-child(5) {
    animation-delay: 2.5s;
}

.sp-code-line:nth-child(6) {
    animation-delay: 3s;
}

.sp-code-line:nth-child(7) {
    animation-delay: 3.5s;
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

.sp-code-num {
    color: #555;
    min-width: 20px;
}

.sp-code-tag {
    color: #FF6B6B;
}

.sp-code-attr {
    color: #FFB800;
}

.sp-code-val {
    color: #28ca41;
}

.sp-code-text {
    color: #ccc;
}

/* Floating stats around the mockup */
.sp-float-stat {
    position: absolute;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatStat 5s ease-in-out infinite;
    z-index: 3;
}

.sp-float-stat:nth-child(2) {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.sp-float-stat:nth-child(3) {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}

.sp-float-stat:nth-child(4) {
    bottom: -10px;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.sp-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.sp-float-icon.green {
    background: rgba(40, 202, 65, 0.15);
    color: #28ca41;
}

.sp-float-icon.gold {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-float-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sp-float-info strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.sp-float-info span {
    font-size: 0.75rem;
    color: #888;
}


/* ---- TRUST BAR / LOGOS ---- */
.sp-trust-bar {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.sp-trust-label {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.sp-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sp-trust-item:hover {
    color: #FFB800;
}

.sp-trust-item i {
    font-size: 1.5rem;
}


/* ---- PROBLEMS / PAIN POINTS SECTION ---- */
.sp-problems {
    padding: 100px 0;
    background: #121212;
    position: relative;
}

.sp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFB800;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.sp-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.sp-section-desc {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.sp-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sp-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sp-problem-card:hover {
    background: rgba(255, 68, 68, 0.05);
    border-color: rgba(255, 68, 68, 0.15);
    transform: translateY(-4px);
}

.sp-problem-card:hover::before {
    transform: scaleX(1);
}

.sp-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.sp-problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sp-problem-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ---- SOLUTION / FEATURES SECTION ---- */
.sp-features {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.sp-features-header {
    text-align: center;
    margin-bottom: 80px;
}

.sp-features-header .sp-section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sp-features-header .sp-section-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.sp-feature-row:last-child {
    margin-bottom: 0;
}

.sp-feature-row.reverse {
    direction: rtl;
}

.sp-feature-row.reverse>* {
    direction: ltr;
}

.sp-feature-visual {
    position: relative;
}

.sp-feature-card-visual {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.sp-feature-card-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Speed Meter */
.sp-speed-meter {
    text-align: center;
}

.sp-speed-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid #222;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-speed-circle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: #28ca41;
    border-right-color: #28ca41;
    border-bottom-color: #28ca41;
    animation: speedFill 2s ease-out forwards;
}

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

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

.sp-speed-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28ca41;
}

.sp-speed-unit {
    font-size: 0.9rem;
    color: #888;
    display: block;
}

.sp-speed-bars {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.sp-speed-bar {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background: #222;
    overflow: hidden;
}

.sp-speed-bar-fill {
    height: 100%;
    border-radius: 4px;
    animation: barFill 1.5s ease forwards;
}

.sp-speed-bar:nth-child(1) .sp-speed-bar-fill {
    background: #28ca41;
    width: 100%;
    animation-delay: 0.5s;
}

.sp-speed-bar:nth-child(2) .sp-speed-bar-fill {
    background: #28ca41;
    width: 85%;
    animation-delay: 0.7s;
}

.sp-speed-bar:nth-child(3) .sp-speed-bar-fill {
    background: #FFB800;
    width: 95%;
    animation-delay: 0.9s;
}

.sp-speed-bar:nth-child(4) .sp-speed-bar-fill {
    background: #FFB800;
    width: 90%;
    animation-delay: 1.1s;
}

@keyframes barFill {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.sp-feature-text .sp-section-label {
    margin-bottom: 12px;
}

.sp-feature-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sp-feature-text p {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 28px;
}

.sp-feature-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-feature-checks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}

.sp-feature-checks li i {
    color: #FFB800;
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Shield Visual */
.sp-shield-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sp-shield-icon {
    font-size: 5rem;
    color: #FFB800;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.3));
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(255, 184, 0, 0.5));
    }
}

.sp-shield-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.sp-shield-badge {
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 8px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.sp-shield-badge i {
    color: #28ca41;
}

/* Tracking Visual */
.sp-tracking-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-tracking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.sp-tracking-item:hover {
    background: rgba(255, 184, 0, 0.05);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateX(6px);
}

.sp-tracking-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sp-tracking-icon.pixel {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.sp-tracking-icon.gtm {
    background: rgba(255, 184, 0, 0.12);
    color: #FFB800;
}

.sp-tracking-icon.ga4 {
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-tracking-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.sp-tracking-info span {
    font-size: 0.85rem;
    color: #888;
}


/* ---- PROCESS TIMELINE ---- */
.sp-process {
    padding: 100px 0;
    background: #121212;
}

.sp-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.sp-process-header .sp-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.sp-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.sp-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FFB800 0%, rgba(255, 184, 0, 0.1) 100%);
}

.sp-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.sp-timeline-item:last-child {
    margin-bottom: 0;
}

.sp-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.sp-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.sp-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 3px solid #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #FFB800;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.sp-timeline-content {
    width: calc(50% - 50px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
}

.sp-timeline-content:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-4px);
}

.sp-timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFB800;
    margin-bottom: 10px;
}

.sp-timeline-content p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 0;
}

.sp-timeline-content .sp-timeline-tag {
    display: inline-block;
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}


/* ---- DIFFERENTIALS / WHY US ---- */
.sp-differentials {
    padding: 100px 0;
    background: #0a0a0a;
}

.sp-differentials-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-differentials-header .sp-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.sp-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-diff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sp-diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sp-diff-card:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-6px);
}

.sp-diff-card:hover::before {
    opacity: 1;
}

.sp-diff-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFB800;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.sp-diff-card:hover .sp-diff-icon {
    background: rgba(255, 184, 0, 0.2);
    transform: scale(1.1);
}

.sp-diff-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sp-diff-card p {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ---- COMPARISON TABLE / SOCIAL PROOF ---- */
.sp-comparison {
    padding: 100px 0;
    background: #121212;
}

.sp-comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-comparison-header .sp-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.sp-comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
}

.sp-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #222;
}

.sp-comparison-row:last-child {
    border-bottom: none;
}

.sp-comparison-row.header {
    background: rgba(255, 184, 0, 0.08);
}

.sp-comparison-cell {
    padding: 18px 24px;
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #fff;
}

.sp-comparison-row.header .sp-comparison-cell {
    font-weight: 700;
    color: #FFB800;
    font-size: 1rem;
}

.sp-comparison-row:not(.header) {
    background: rgba(255, 255, 255, 0.02);
}

.sp-comparison-row:not(.header):hover {
    background: rgba(255, 184, 0, 0.03);
}

.sp-check {
    color: #28ca41;
    font-size: 1.2rem;
}

.sp-cross {
    color: #ff4444;
    font-size: 1.2rem;
}

.sp-partial {
    color: #FFB800;
    font-size: 0.85rem;
}


/* ---- STATS COUNTER SECTION ---- */
.sp-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e0e0e 0%, #1a1200 100%);
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.sp-stat-item {
    position: relative;
}

.sp-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 184, 0, 0.2);
}

.sp-stat-item:last-child::after {
    display: none;
}

.sp-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFB800;
    line-height: 1;
    margin-bottom: 8px;
}

.sp-stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ---- FINAL CTA SECTION ---- */
.sp-final-cta {
    padding: 120px 0;
    background: linear-gradient(160deg, #121212 0%, #1a1200 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.sp-final-cta .sp-section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sp-final-cta .sp-section-desc {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sp-final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sp-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.sp-urgency i {
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {

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

    50% {
        transform: scale(1.2);
    }
}


/* ---- FAQ SECTION ---- */
.sp-faq {
    padding: 100px 0;
    background: #0a0a0a;
}

.sp-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-faq-header .sp-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.sp-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.sp-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.sp-faq-item:hover {
    border-color: rgba(255, 184, 0, 0.15);
}

.sp-faq-item.active {
    border-color: rgba(255, 184, 0, 0.3);
    background: rgba(255, 184, 0, 0.04);
}

.sp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp-faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sp-faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.sp-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sp-faq-item.active .sp-faq-toggle {
    background: #FFB800;
    color: #000;
    transform: rotate(45deg);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sp-faq-item.active .sp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.sp-faq-answer p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 0;
}


/* ---- SCROLL REVEAL ANIMATIONS ---- */
.sp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.sp-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.sp-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}


/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .sp-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .sp-hero h1 {
        font-size: 2.8rem;
    }

    .sp-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-hero-ctas {
        justify-content: center;
    }

    .sp-hero-visual {
        order: -1;
    }

    .sp-float-stat:nth-child(3) {
        display: none;
    }

    .sp-problems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-feature-row,
    .sp-feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .sp-feature-text {
        text-align: center;
    }

    .sp-feature-checks li {
        justify-content: center;
    }

    .sp-diff-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .sp-stat-item:nth-child(2)::after {
        display: none;
    }

    .sp-timeline::before {
        left: 24px;
    }

    .sp-timeline-item,
    .sp-timeline-item:nth-child(odd),
    .sp-timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .sp-timeline-dot {
        left: 24px;
        transform: translateX(-50%);
    }

    .sp-timeline-content {
        width: 100%;
    }

    .sp-comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .sp-hero h1 {
        font-size: 2.2rem;
    }

    .sp-section-title {
        font-size: 2rem;
    }

    .sp-feature-text h3 {
        font-size: 1.8rem;
    }

    .sp-browser-mockup {
        max-width: 100%;
    }

    .sp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .sp-stat-number {
        font-size: 2.2rem;
    }

    .sp-comparison-cell {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .sp-float-stat {
        display: none;
    }
}

@media (max-width: 480px) {
    .sp-hero {
        padding: 100px 0 60px;
    }

    .sp-hero h1 {
        font-size: 1.8rem;
    }

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

    .sp-section-title {
        font-size: 1.6rem;
    }

    .sp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sp-stat-item::after {
        display: none;
    }
}


/* ===== AI AGENT PAGE - SPECIFIC STYLES ===== */

/* Chat Simulator Mockup */
.sp-chat-mockup {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

.sp-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #252525;
    border-bottom: 1px solid #333;
}

.sp-chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.sp-chat-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.sp-chat-status {
    font-size: 0.75rem;
    color: #28ca41;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28ca41;
    display: inline-block;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.sp-chat-body {
    padding: 20px;
    min-height: 300px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0;
    animation: chatMsgIn 0.5s ease forwards;
}

.sp-chat-msg.user {
    background: #FFB800;
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.sp-chat-msg.bot {
    background: #252525;
    color: #ddd;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid #333;
}

.sp-chat-msg:nth-child(1) {
    animation-delay: 0.3s;
}

.sp-chat-msg:nth-child(2) {
    animation-delay: 1.2s;
}

.sp-chat-msg:nth-child(3) {
    animation-delay: 2.4s;
}

.sp-chat-msg:nth-child(4) {
    animation-delay: 3.6s;
}

.sp-chat-msg:nth-child(5) {
    animation-delay: 4.8s;
}

.sp-chat-msg:nth-child(6) {
    animation-delay: 6s;
}

@keyframes chatMsgIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sp-chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 12px 18px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    animation: chatMsgIn 0.5s ease forwards;
    animation-delay: 2s;
}

.sp-typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #888;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.sp-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.sp-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }
}

/* AI Brain Pulse Icon */
.sp-ai-brain {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.sp-ai-brain::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 184, 0, 0.15);
    animation: brainRing 3s ease-in-out infinite;
}

.sp-ai-brain::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.08);
    animation: brainRing 3s ease-in-out infinite 0.5s;
}

@keyframes brainRing {

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

    50% {
        transform: scale(1.08);
        opacity: 0.5;
    }
}

.sp-ai-brain i {
    font-size: 3rem;
    color: #FFB800;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.4));
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {

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

    50% {
        transform: scale(1.1);
    }
}

/* Notion-style Dashboard */
.sp-notion-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-notion-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.sp-notion-row:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.12);
    transform: translateX(6px);
}

.sp-notion-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sp-notion-text {
    flex: 1;
}

.sp-notion-text strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.sp-notion-text span {
    font-size: 0.82rem;
    color: #777;
}

.sp-notion-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-notion-tag.green {
    background: rgba(40, 202, 65, 0.15);
    color: #28ca41;
}

.sp-notion-tag.gold {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-notion-tag.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sp-notion-tag.red {
    background: rgba(255, 68, 68, 0.15);
    color: #ff6b6b;
}

/* Floating icon variant for AI page */
.sp-float-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

/* Use Case Cards */
.sp-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-usecase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sp-usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB800, #FF8C00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sp-usecase-card:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-4px);
}

.sp-usecase-card:hover::before {
    transform: scaleX(1);
}

.sp-usecase-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFB800;
    margin-bottom: 20px;
}

.sp-usecase-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sp-usecase-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .sp-usecase-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ===== CRM / GESTÃO DE LEADS - SPECIFIC STYLES ===== */

/* Kanban Board Mockup */
.sp-kanban-mockup {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

.sp-kanban-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #252525;
    border-bottom: 1px solid #333;
}

.sp-kanban-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-kanban-title i {
    color: #FFB800;
}

.sp-kanban-actions {
    display: flex;
    gap: 8px;
}

.sp-kanban-action {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.75rem;
}

.sp-kanban-body {
    padding: 16px;
    min-height: 300px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sp-kanban-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-kanban-col-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 4px;
}

.sp-kanban-col-header.new {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sp-kanban-col-header.progress {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-kanban-col-header.done {
    background: rgba(40, 202, 65, 0.15);
    color: #28ca41;
}

.sp-kanban-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    opacity: 0;
    animation: kanbanSlide 0.4s ease forwards;
    transition: all 0.3s ease;
}

.sp-kanban-card:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-2px);
}

.sp-kanban-card:nth-child(2) {
    animation-delay: 0.3s;
}

.sp-kanban-card:nth-child(3) {
    animation-delay: 0.6s;
}

.sp-kanban-card:nth-child(4) {
    animation-delay: 0.9s;
}

.sp-kanban-card:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes kanbanSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.sp-kanban-card-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #eee;
    margin-bottom: 4px;
}

.sp-kanban-card-info {
    font-size: 0.68rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sp-kanban-card-info i {
    font-size: 0.6rem;
}

/* Funnel Visual */
.sp-funnel-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 0;
}

.sp-funnel-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.1);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.sp-funnel-step:hover {
    background: rgba(255, 184, 0, 0.12);
    border-color: rgba(255, 184, 0, 0.25);
}

.sp-funnel-step:nth-child(1) {
    width: 100%;
    border-radius: 12px 12px 0 0;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.sp-funnel-step:nth-child(2) {
    width: 85%;
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.sp-funnel-step:nth-child(3) {
    width: 70%;
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.2);
}

.sp-funnel-step:nth-child(4) {
    width: 55%;
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.2);
}

.sp-funnel-step:nth-child(5) {
    width: 40%;
    border-radius: 0 0 12px 12px;
    background: rgba(40, 202, 65, 0.1);
    border-color: rgba(40, 202, 65, 0.2);
}

.sp-funnel-step i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.sp-funnel-count {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    margin-left: auto;
}

/* Ranking Podium */
.sp-ranking-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-ranking-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sp-ranking-row:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.12);
}

.sp-ranking-pos {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.sp-ranking-pos.gold {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-ranking-pos.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #c0c0c0;
}

.sp-ranking-pos.bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #cd7f32;
}

.sp-ranking-name {
    flex: 1;
}

.sp-ranking-name strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.sp-ranking-name span {
    font-size: 0.78rem;
    color: #777;
}

.sp-ranking-bar {
    width: 120px;
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
}

.sp-ranking-bar-fill {
    height: 100%;
    border-radius: 3px;
    animation: barFill 1.5s ease forwards;
}

.sp-ranking-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFB800;
    min-width: 40px;
    text-align: right;
}

/* Pipeline Tracker Mini */
.sp-pipeline-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.sp-pipeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

.sp-pipeline-dot.active {
    background: #FFB800;
    box-shadow: 0 0 6px rgba(255, 184, 0, 0.4);
}

.sp-pipeline-dot.done {
    background: #28ca41;
}

@media (max-width: 768px) {
    .sp-kanban-body {
        grid-template-columns: 1fr;
    }

    .sp-funnel-step {
        width: 100% !important;
        border-radius: 8px !important;
    }

    .sp-funnel-visual {
        gap: 6px;
    }
}


/* ===== INFRA N8N / SERVERS - SPECIFIC STYLES ===== */

/* Terminal Mockup */
.sp-terminal-mockup {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

.sp-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.sp-terminal-bar span {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    font-family: 'Courier New', monospace;
}

.sp-terminal-body {
    padding: 20px;
    min-height: 290px;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.8;
    color: #ccc;
}

.sp-terminal-line {
    opacity: 0;
    animation: typeIn 0.4s ease forwards;
    white-space: nowrap;
    overflow: hidden;
}

.sp-terminal-line:nth-child(1) {
    animation-delay: 0.3s;
}

.sp-terminal-line:nth-child(2) {
    animation-delay: 0.8s;
}

.sp-terminal-line:nth-child(3) {
    animation-delay: 1.3s;
}

.sp-terminal-line:nth-child(4) {
    animation-delay: 1.8s;
}

.sp-terminal-line:nth-child(5) {
    animation-delay: 2.3s;
}

.sp-terminal-line:nth-child(6) {
    animation-delay: 2.8s;
}

.sp-terminal-line:nth-child(7) {
    animation-delay: 3.3s;
}

.sp-terminal-line:nth-child(8) {
    animation-delay: 3.8s;
}

.sp-terminal-line:nth-child(9) {
    animation-delay: 4.3s;
}

.sp-terminal-prompt {
    color: #28ca41;
}

.sp-terminal-cmd {
    color: #FFB800;
}

.sp-terminal-output {
    color: #888;
}

.sp-terminal-success {
    color: #28ca41;
}

.sp-terminal-url {
    color: #3b82f6;
}

/* Server Stack */
.sp-server-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-server-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.sp-server-item:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.12);
    transform: translateX(6px);
}

.sp-server-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sp-server-icon.n8n {
    background: rgba(255, 184, 0, 0.12);
    color: #FFB800;
}

.sp-server-icon.docker {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.sp-server-icon.cloud {
    background: rgba(255, 140, 0, 0.12);
    color: #ff8c00;
}

.sp-server-icon.security {
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-server-icon.whatsapp {
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-server-icon.email {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.sp-server-icon.storage {
    background: rgba(255, 68, 68, 0.12);
    color: #ff6b6b;
}

.sp-server-info {
    flex: 1;
}

.sp-server-info strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.sp-server-info span {
    font-size: 0.8rem;
    color: #777;
}

.sp-server-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-server-status.running {
    color: #28ca41;
}

.sp-server-status.running::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28ca41;
    animation: statusPulse 2s ease-in-out infinite;
}

/* Docker container cards */
.sp-docker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sp-docker-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-docker-card:hover {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.sp-docker-card i {
    font-size: 1.6rem;
    color: #3b82f6;
    margin-bottom: 10px;
    display: block;
}

.sp-docker-card strong {
    display: block;
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 4px;
}

.sp-docker-card span {
    font-size: 0.75rem;
    color: #777;
}

/* Price comparison cards */
.sp-price-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.sp-price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-price-card.highlight {
    border-color: rgba(255, 184, 0, 0.3);
    background: rgba(255, 184, 0, 0.04);
}

.sp-price-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sp-price-card.highlight .sp-price-card-label {
    color: #FFB800;
}

.sp-price-card .sp-price-card-label {
    color: #888;
}

.sp-price-card-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.sp-price-card.highlight .sp-price-card-value {
    color: #FFB800;
}

.sp-price-card .sp-price-card-value {
    color: #ff6b6b;
}

.sp-price-card-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

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

    .sp-price-compare {
        grid-template-columns: 1fr;
    }
}


/* ===== API & INTEGRAÇÕES - SPECIFIC STYLES ===== */

/* API Request Mockup */
.sp-api-mockup {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

.sp-api-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.sp-api-method {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.sp-api-method.get {
    background: rgba(40, 202, 65, 0.15);
    color: #28ca41;
}

.sp-api-method.post {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sp-api-method.put {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-api-url {
    font-size: 0.82rem;
    color: #aaa;
    font-family: 'Courier New', monospace;
}

.sp-api-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sp-api-status.ok {
    color: #28ca41;
}

.sp-api-body {
    padding: 20px;
    min-height: 240px;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    line-height: 1.7;
}

.sp-api-json {
    color: #888;
}

.sp-api-json .key {
    color: #3b82f6;
}

.sp-api-json .string {
    color: #28ca41;
}

.sp-api-json .number {
    color: #FFB800;
}

.sp-api-json .boolean {
    color: #ff6b6b;
}

.sp-api-response-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-api-response-label i {
    color: #28ca41;
}

/* Integration Hub / Data Flow */
.sp-integration-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sp-hub-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.12);
    border: 2px solid rgba(255, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #FFB800;
    position: relative;
    z-index: 2;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 184, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 184, 0, 0.25);
    }
}

.sp-hub-nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: -10px;
    position: relative;
}

.sp-hub-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-hub-node:hover {
    background: rgba(255, 184, 0, 0.04);
    border-color: rgba(255, 184, 0, 0.15);
    transform: translateY(-3px);
}

.sp-hub-node i {
    font-size: 1.3rem;
    opacity: 0.85;
}

.sp-hub-node span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #ccc;
}

/* Endpoint List */
.sp-endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-endpoint-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sp-endpoint-item:hover {
    background: rgba(255, 184, 0, 0.03);
    border-color: rgba(255, 184, 0, 0.1);
}

.sp-endpoint-method {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    min-width: 42px;
    text-align: center;
}

.sp-endpoint-method.get {
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-endpoint-method.post {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.sp-endpoint-method.put {
    background: rgba(255, 184, 0, 0.12);
    color: #FFB800;
}

.sp-endpoint-method.delete {
    background: rgba(255, 68, 68, 0.12);
    color: #ff6b6b;
}

.sp-endpoint-path {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #ccc;
    flex: 1;
}

.sp-endpoint-desc {
    font-size: 0.72rem;
    color: #777;
}

/* Data flow arrows */
.sp-flow-arrow {
    text-align: center;
    color: #FFB800;
    font-size: 1.2rem;
    padding: 6px 0;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .sp-hub-nodes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ANÚNCIOS & CRIATIVOS ===== */
.sp-ad-mockup {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.08);
    animation: floatMockup 6s ease-in-out infinite;
}

.sp-ad-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.sp-ad-platform {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-ad-platform.meta {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sp-ad-platform.google {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
}

.sp-ad-campaign-name {
    font-size: 0.82rem;
    color: #ccc;
    font-weight: 500;
}

.sp-ad-status-badge {
    margin-left: auto;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-ad-body {
    padding: 20px;
}

.sp-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sp-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.sp-metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.sp-metric-value.gold {
    color: #FFB800;
}

.sp-metric-value.green {
    color: #28ca41;
}

.sp-metric-value.blue {
    color: #3b82f6;
}

.sp-metric-label {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-metric-change {
    font-size: 0.68rem;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.sp-metric-change.up {
    color: #28ca41;
}

.sp-conv-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 0;
}

.sp-conv-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.sp-conv-step:nth-child(1) {
    width: 100%;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.sp-conv-step:nth-child(3) {
    width: 82%;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.sp-conv-step:nth-child(5) {
    width: 64%;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.sp-conv-step:nth-child(7) {
    width: 46%;
    background: rgba(40, 202, 65, 0.12);
    border: 1px solid rgba(40, 202, 65, 0.2);
}

.sp-conv-step .sp-conv-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: #aaa;
}

.sp-conv-arrow {
    color: #555;
    font-size: 0.7rem;
    padding: 4px 0;
    text-align: center;
}

.sp-pixel-tracker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-pixel-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sp-pixel-event:hover {
    background: rgba(255, 184, 0, 0.03);
    border-color: rgba(255, 184, 0, 0.1);
}

.sp-pixel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sp-pixel-dot.active {
    background: #28ca41;
    animation: statusPulse 2s ease-in-out infinite;
}

.sp-pixel-dot.warning {
    background: #FFB800;
}

.sp-pixel-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #ccc;
    flex: 1;
}

.sp-pixel-source {
    font-size: 0.68rem;
    color: #777;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sp-google-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-google-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-google-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 184, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #FFB800;
}

.sp-google-card-info strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.sp-google-card-info span {
    font-size: 0.75rem;
    color: #777;
}

.sp-google-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #FFB800;
    font-size: 0.85rem;
}

.sp-google-stars span {
    color: #aaa;
    font-size: 0.75rem;
    margin-left: 5px;
}

.sp-google-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sp-google-stat {
    text-align: center;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.sp-google-stat strong {
    display: block;
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 2px;
}

.sp-google-stat span {
    font-size: 0.65rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    .sp-google-card-stats {
        grid-template-columns: 1fr;
    }

    .sp-conv-step {
        font-size: 0.72rem;
        padding: 10px 14px;
    }
}

/* ===== FUNIS DE VENDA ===== */
.sp-funnel-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 10px 0;
}

.sp-funnel-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.sp-funnel-stage:nth-child(1) {
    width: 100%;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.sp-funnel-stage:nth-child(3) {
    width: 84%;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.sp-funnel-stage:nth-child(5) {
    width: 68%;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.sp-funnel-stage:nth-child(7) {
    width: 52%;
    background: rgba(40, 202, 65, 0.12);
    border: 1px solid rgba(40, 202, 65, 0.25);
}

.sp-funnel-stage:nth-child(9) {
    width: 38%;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.sp-funnel-stage .sp-funnel-icon {
    font-size: 0.9rem;
    opacity: 0.8;
    width: 20px;
    text-align: center;
}

.sp-funnel-stage .sp-funnel-name {
    flex: 1;
}

.sp-funnel-stage .sp-funnel-rate {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 500;
}

.sp-funnel-arrow {
    color: #444;
    font-size: 0.65rem;
    padding: 3px 0;
    text-align: center;
}

.sp-journey-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-journey-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.sp-journey-step:hover {
    background: rgba(255, 184, 0, 0.03);
    border-color: rgba(255, 184, 0, 0.12);
}

.sp-journey-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.12);
    color: #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.sp-journey-step-info strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 2px;
}

.sp-journey-step-info span {
    font-size: 0.75rem;
    color: #777;
}

.sp-nurture-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-nurture-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sp-nurture-item:hover {
    background: rgba(255, 184, 0, 0.03);
    border-color: rgba(255, 184, 0, 0.1);
}

.sp-nurture-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sp-nurture-icon.email {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.sp-nurture-icon.whatsapp {
    background: rgba(40, 202, 65, 0.12);
    color: #28ca41;
}

.sp-nurture-icon.crm {
    background: rgba(255, 184, 0, 0.12);
    color: #FFB800;
}

.sp-nurture-icon.call {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.sp-nurture-info strong {
    display: block;
    font-size: 0.82rem;
    color: #ccc;
}

.sp-nurture-info span {
    font-size: 0.7rem;
    color: #666;
}

.sp-nurture-time {
    margin-left: auto;
    font-size: 0.68rem;
    color: #555;
    white-space: nowrap;
}

.sp-bottleneck-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-bottleneck-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-bottleneck-row:last-child {
    border-bottom: none;
}

.sp-bottleneck-label {
    flex: 1;
    font-size: 0.82rem;
    color: #ccc;
}

.sp-bottleneck-bar {
    flex: 2;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.sp-bottleneck-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.sp-bottleneck-fill.red {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.sp-bottleneck-fill.yellow {
    background: linear-gradient(90deg, #FFB800, #f0932b);
}

.sp-bottleneck-fill.green {
    background: linear-gradient(90deg, #28ca41, #6ab04c);
}

.sp-bottleneck-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #aaa;
    min-width: 40px;
    text-align: right;
}

@media (max-width: 768px) {
    .sp-funnel-stage {
        font-size: 0.72rem;
        padding: 12px 16px;
    }

    .sp-journey-step {
        flex-direction: column;
        gap: 8px;
    }
}