/* ============================================
   SALESHIVE HOMEPAGE STYLES
   ============================================ */

/* Hero Section */
.sh-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 100px;
    background: transparent;
}

.sh-hero::before {
    display: none;
}

.sh-hero::after {
    display: none;
}

@keyframes heroGradientMove {
    0%, 100% { 
        transform: translate(0%, 0%) rotate(0deg);
    }
    25% { 
        transform: translate(5%, -3%) rotate(2deg);
    }
    50% { 
        transform: translate(-3%, 5%) rotate(-1deg);
    }
    75% { 
        transform: translate(-5%, -2%) rotate(1deg);
    }
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

.sh-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.sh-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 0, 0.15);
    top: -150px;
    right: -100px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.sh-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(155, 81, 224, 0.12);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-40px, 60px) scale(1.1) rotate(5deg); }
    50% { transform: translate(-80px, 80px) scale(1.2) rotate(0deg); }
    75% { transform: translate(-30px, 40px) scale(1.05) rotate(-3deg); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -30px) scale(1.05) rotate(-3deg); }
    50% { transform: translate(80px, -80px) scale(1.15) rotate(0deg); }
    75% { transform: translate(30px, -50px) scale(1.08) rotate(5deg); }
}

.sh-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sh-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 140, 26, 0.1);
    border: 1px solid rgba(255, 140, 26, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.sh-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #ff8c1a;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.sh-hero-eyebrow-text {
    color: #ffb347;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sh-hero-headline {
    font-size: 66px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -2px;
}

/* Highlight text styling */
.sh-hero-highlight {
    display: inline;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c1a 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sh-hero-subhead {
    font-size: 26px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px;
}

.sh-hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    line-height: 1.8;
    max-width: 520px;
}

.sh-hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.sh-hero-stat-number {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0 0 8px;
}

.sh-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sh-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sh-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff8c1a, #ff6b00);
    color: #000 !important;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sh-hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShimmer 3s infinite;
}

.sh-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #000 !important;
}

.sh-hero-btn-primary svg {
    width: 18px;
    height: 18px;
    fill: #000;
}

.sh-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.sh-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 26, 0.5);
    color: #fff !important;
}

.sh-hero-btn-secondary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
}

.sh-hero-btn-secondary:hover svg {
    transform: translateX(5px);
}

/* Hero Dashboard */
.sh-hero-visual {
    perspective: 1000px;
}

.sh-hero-dashboard {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.98));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(155, 81, 224, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sh-hero-dashboard:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
}

.sh-hero-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-hero-dashboard-dots {
    display: flex;
    gap: 8px;
}

.sh-hero-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sh-hero-dashboard-dot:nth-child(1) { background: #ff5f57; }
.sh-hero-dashboard-dot:nth-child(2) { background: #febc2e; }
.sh-hero-dashboard-dot:nth-child(3) { background: #28c840; }

.sh-hero-dashboard-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.sh-hero-dashboard-content {
    padding: 20px;
}

.sh-hero-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.sh-hero-dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px;
    transition: all 0.3s;
}

.sh-hero-dashboard-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 26, 0.3);
}

.sh-hero-dashboard-card-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.sh-hero-dashboard-card-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 4px;
}

.sh-hero-dashboard-card-change {
    font-size: 11px;
    color: #28c840;
}

.sh-hero-activity-feed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 14px;
}

.sh-hero-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-hero-activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sh-hero-activity-item:first-child {
    padding-top: 0;
}

.sh-hero-activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff8c1a;
    flex-shrink: 0;
    animation: activityPulse 2s ease-in-out infinite;
}

.sh-hero-activity-item:nth-child(2) .sh-hero-activity-dot {
    background: #9b51e0;
    animation-delay: 0.5s;
}

.sh-hero-activity-item:nth-child(3) .sh-hero-activity-dot {
    background: #28c840;
    animation-delay: 1s;
}

@keyframes activityPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.sh-hero-activity-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
}

.sh-hero-activity-text strong {
    color: rgba(255, 255, 255, 0.9);
}

.sh-hero-activity-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ============================================
   HERO GROWTH CHART CARD
   ============================================ */
.sh-hero-chart-card {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.98));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 140, 26, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sh-hero-chart-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), 0 0 100px rgba(255, 140, 26, 0.15);
}

.sh-hero-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-hero-chart-dots {
    display: flex;
    gap: 8px;
}

.sh-hero-chart-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sh-hero-chart-dot:nth-child(1) { background: #ff5f57; }
.sh-hero-chart-dot:nth-child(2) { background: #febc2e; }
.sh-hero-chart-dot:nth-child(3) { background: #28c840; }

.sh-hero-chart-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.sh-hero-chart-content {
    padding: 24px;
}

/* Chart Wrapper */
.sh-hero-chart-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 20px 10px;
    margin-bottom: 20px;
}

.sh-hero-chart-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(40, 200, 64, 0.15);
    border: 1px solid rgba(40, 200, 64, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #28c840;
}

.sh-hero-chart-badge-arrow {
    font-size: 12px;
}

.sh-hero-chart-svg {
    width: 100%;
    height: 160px;
    display: block;
}

.sh-chart-grid {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.sh-chart-area {
    opacity: 0;
    animation: chartAreaFade 1s ease 0.5s forwards;
}

@keyframes chartAreaFade {
    to { opacity: 1; }
}

.sh-chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: chartLineDraw 2s ease forwards;
}

@keyframes chartLineDraw {
    to { stroke-dashoffset: 0; }
}

.sh-chart-dot {
    opacity: 0;
    animation: chartDotAppear 0.5s ease 1.8s forwards;
}

@keyframes chartDotAppear {
    to { opacity: 1; }
}

.sh-chart-dot-pulse {
    opacity: 0;
    animation: chartDotPulse 2s ease-in-out 2s infinite;
}

@keyframes chartDotPulse {
    0%, 100% { 
        opacity: 0;
        r: 6;
    }
    50% { 
        opacity: 0.5;
        r: 16;
    }
}

.sh-hero-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 12px;
}

.sh-hero-chart-labels span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.sh-hero-chart-labels span:last-child {
    color: #ff8c1a;
    font-weight: 600;
}

/* Metrics Row */
.sh-hero-chart-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.sh-hero-chart-metric {
    text-align: center;
    flex: 1;
}

.sh-hero-chart-metric-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 4px;
    line-height: 1;
}

.sh-hero-chart-metric-value span {
    font-size: 18px;
    font-weight: 700;
}

.sh-hero-chart-metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.sh-hero-chart-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Live Activity Indicator */
.sh-hero-chart-live {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 140, 26, 0.08);
    border: 1px solid rgba(255, 140, 26, 0.15);
    border-radius: 10px;
}

.sh-hero-chart-live-dot {
    width: 8px;
    height: 8px;
    background: #ff8c1a;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 140, 26, 0.5);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(255, 140, 26, 0);
    }
}

.sh-hero-chart-live-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sh-hero-chart-live-text strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sh-hero-chart-content {
        padding: 16px;
    }
    
    .sh-hero-chart-wrapper {
        padding: 16px 16px 8px;
    }
    
    .sh-hero-chart-svg {
        height: 120px;
    }
    
    .sh-hero-chart-badge {
        top: 12px;
        right: 12px;
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .sh-hero-chart-metrics {
        padding: 16px 12px;
    }
    
    .sh-hero-chart-metric-value {
        font-size: 22px;
    }
    
    .sh-hero-chart-metric-value span {
        font-size: 14px;
    }
    
    .sh-hero-chart-metric-label {
        font-size: 9px;
    }
    
    .sh-hero-chart-live {
        padding: 10px 12px;
    }
    
    .sh-hero-chart-live-text {
        font-size: 11px;
    }
}

/* Logos Section */
.sh-logos {
    padding: 80px 40px;
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-logos-label {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.sh-logos-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.sh-logos-item {
    opacity: 1;
    transition: opacity 0.3s, color 0.3s;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.sh-logos-item:hover {
    opacity: 1;
    color: #fff;
}

/* Section Base Styles */
.sh-section {
    padding: 120px 40px;
    position: relative;
}

.sh-section-dark {
    background: #0a0a0f;
}

.sh-section-gradient {
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
}

.sh-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sh-section-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 140, 26, 0.1);
    border: 1px solid rgba(255, 140, 26, 0.3);
    border-radius: 50px;
    color: #ffb347;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sh-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.sh-section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .sh-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sh-hero-headline {
        font-size: 52px;
    }
    
    .sh-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .sh-section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .sh-hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .sh-hero-headline {
        font-size: 38px;
        letter-spacing: -1px;
    }
    
    .sh-hero-subhead {
        font-size: 20px;
    }
    
    .sh-hero-stats {
        gap: 30px;
    }
    
    .sh-hero-stat-number {
        font-size: 32px;
    }
    
    .sh-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .sh-hero-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .sh-section {
        padding: 80px 20px;
    }
    
    .sh-section-title {
        font-size: 32px;
    }
    
    .sh-logos-grid {
        gap: 30px;
    }
}

/* ============================================
   PARALLAX FLOATING ELEMENTS
   ============================================ */
.sh-parallax-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.sh-parallax-1 {
    width: 6px;
    height: 6px;
    background: rgba(255, 140, 26, 0.6);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    box-shadow: 0 0 20px rgba(255, 140, 26, 0.4);
    animation: parallaxFloat1 15s ease-in-out infinite;
}

.sh-parallax-2 {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(155, 81, 224, 0.2);
    border-radius: 50%;
    top: 30%;
    right: 15%;
    animation: parallaxFloat2 20s ease-in-out infinite;
}

.sh-parallax-3 {
    width: 4px;
    height: 4px;
    background: rgba(155, 81, 224, 0.7);
    border-radius: 50%;
    bottom: 25%;
    left: 20%;
    box-shadow: 0 0 15px rgba(155, 81, 224, 0.4);
    animation: parallaxFloat3 12s ease-in-out infinite;
}

.sh-parallax-4 {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 140, 26, 0.1);
    top: 50%;
    left: 5%;
    animation: parallaxFloat4 25s ease-in-out infinite;
    transform: rotate(45deg);
}

.sh-parallax-5 {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff8c1a, #9b51e0);
    border-radius: 50%;
    top: 70%;
    right: 10%;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.5);
    animation: parallaxFloat5 18s ease-in-out infinite;
}

@keyframes parallaxFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(30px, -20px); opacity: 1; }
    50% { transform: translate(60px, 10px); opacity: 0.8; }
    75% { transform: translate(20px, 30px); opacity: 1; }
}

@keyframes parallaxFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes parallaxFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -40px); }
}

@keyframes parallaxFloat4 {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(55deg) translate(30px, -30px); }
}

@keyframes parallaxFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, -30px) scale(1.2); }
    50% { transform: translate(-40px, 10px) scale(0.9); }
    75% { transform: translate(-10px, 20px) scale(1.1); }
}

/* Section Parallax Orbs */
.sh-section-parallax {
    position: relative;
    overflow: hidden;
}

.sh-section-parallax-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.sh-section-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 0, 0.08);
    top: -100px;
    left: -100px;
    animation: sectionOrbFloat1 20s ease-in-out infinite;
}

.sh-section-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(155, 81, 224, 0.06);
    bottom: -80px;
    right: -80px;
    animation: sectionOrbFloat2 25s ease-in-out infinite;
}

.sh-section-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(155, 81, 224, 0.1);
    top: 20%;
    right: -120px;
    animation: sectionOrbFloat3 22s ease-in-out infinite;
}

.sh-section-orb-4 {
    width: 200px;
    height: 200px;
    background: rgba(255, 140, 26, 0.06);
    bottom: 10%;
    left: 10%;
    animation: sectionOrbFloat4 18s ease-in-out infinite;
}

.sh-section-orb-5 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.1);
    top: -150px;
    left: 30%;
    animation: sectionOrbFloat5 24s ease-in-out infinite;
}

.sh-section-orb-6 {
    width: 280px;
    height: 280px;
    background: rgba(155, 81, 224, 0.08);
    bottom: -100px;
    right: 20%;
    animation: sectionOrbFloat6 20s ease-in-out infinite;
}

@keyframes sectionOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.15); }
}

@keyframes sectionOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -40px) scale(1.1); }
}

@keyframes sectionOrbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 30px) scale(1.1); }
    66% { transform: translate(-30px, -20px) scale(0.95); }
}

@keyframes sectionOrbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

@keyframes sectionOrbFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.2); }
}

@keyframes sectionOrbFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

/* ============================================
   BUTTON SHIMMER ANIMATION
   ============================================ */
@keyframes btnShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================================
   HOW IT WORKS SECTION - STACKED CARDS V2
   ============================================ */
.sh-how-it-works-v2 {
    padding: 120px 40px 140px;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0b14 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.sh-how-it-works-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 26, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.sh-stacked-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 20px;
    position: relative;
}

.sh-stacked-card {
    position: relative;
    background: linear-gradient(165deg, rgba(25, 25, 35, 0.5) 0%, rgba(15, 15, 22, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 28px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sh-stacked-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(165deg, rgba(255, 140, 26, 0.2) 0%, transparent 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sh-stacked-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 140, 26, 0.15);
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 140, 26, 0.08);
    z-index: 10;
}

.sh-stacked-card:hover::before {
    opacity: 1;
}

.sh-stacked-card-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.15) 0%, rgba(255, 140, 26, 0.03) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -3px;
    transition: all 0.5s ease;
}

.sh-stacked-card:hover .sh-stacked-card-number {
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.4) 0%, rgba(255, 140, 26, 0.15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.sh-stacked-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sh-stacked-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.12) 0%, rgba(255, 107, 0, 0.06) 100%);
    border: 1px solid rgba(255, 140, 26, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.sh-stacked-card-icon svg {
    width: 28px;
    height: 28px;
    color: #ff8c1a;
    transition: all 0.4s ease;
}

.sh-stacked-card:hover .sh-stacked-card-icon {
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.2) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-color: rgba(255, 140, 26, 0.4);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 140, 26, 0.15);
}

.sh-stacked-card:hover .sh-stacked-card-icon svg {
    transform: scale(1.1);
}

.sh-stacked-card-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.sh-stacked-card-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
}

.sh-stacked-card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 140, 26, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sh-stacked-card:hover .sh-stacked-card-glow {
    opacity: 1;
}

.sh-stacked-cards-connector {
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 100px;
    position: relative;
    z-index: 0;
    opacity: 0.6;
}

.sh-stacked-cards-connector svg {
    width: 100%;
    height: 20px;
}

/* Cards visible by default - no scroll animation */

/* ========================================
   TIMELINE PROCESS SECTION
   ======================================== */
.sh-process-timeline-section {
    padding: 120px 40px;
}

.sh-timeline-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 60px;
}

.sh-timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(255, 107, 0, 0.6) 0%,
        rgba(255, 107, 0, 0.3) 70%,
        rgba(255, 107, 0, 0) 100%
    );
}

.sh-timeline-phase {
    position: relative;
    padding-bottom: 48px;
}

.sh-timeline-phase:last-child {
    padding-bottom: 0;
}

.sh-timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sh-timeline-phase:hover .sh-timeline-marker {
    background: linear-gradient(135deg, #ff8533, #ff6b00);
    border-color: #ff8533;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}


.sh-timeline-number {
    font-size: 18px;
    font-weight: 800;
    color: #ff8533;
    transition: all 0.3s ease;
}

.sh-timeline-phase:hover .sh-timeline-number,
.sh-timeline-marker-final .sh-timeline-number {
    color: #fff;
}

.sh-timeline-content {
    background: linear-gradient(165deg, rgba(25, 25, 35, 0.4) 0%, rgba(15, 15, 22, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.sh-timeline-phase:hover .sh-timeline-content {
    border-color: rgba(255, 107, 0, 0.2);
    background: linear-gradient(165deg, rgba(30, 30, 40, 0.5) 0%, rgba(20, 20, 28, 0.6) 100%);
}

.sh-timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sh-timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ff8533;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sh-timeline-duration svg {
    width: 14px;
    height: 14px;
    }

.sh-timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.sh-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.sh-timeline-step svg {
    width: 18px;
    height: 18px;
    color: #ff8533;
    flex-shrink: 0;
    margin-top: 2px;
}

.sh-timeline-step span {
    flex: 1;
    }

.sh-timeline-cta {
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 1100px) {
    .sh-stacked-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sh-stacked-card {
        transform: none;
    }
    
    .sh-stacked-card:hover {
        transform: translateY(-8px);
    }
    
    .sh-stacked-cards-connector {
        display: none;
    }
    
    /* Timeline tablet */
    .sh-process-timeline-section {
        padding: 100px 30px;
    }
    
    .sh-timeline-container {
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .sh-how-it-works-v2 {
        padding: 80px 20px 100px;
    }
    
    .sh-stacked-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sh-stacked-card {
        padding: 32px 24px 28px;
    }
    
    .sh-stacked-card-number {
        font-size: 56px;
        margin-bottom: 16px;
    }
    
    .sh-stacked-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .sh-stacked-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .sh-stacked-card-text h3 {
        font-size: 18px;
    }
    
    .sh-stacked-card-text p {
        font-size: 14px;
    }
    
    /* Timeline responsive - mobile */
    .sh-process-timeline-section {
        padding: 80px 20px;
    }
    
    .sh-timeline-container {
        padding-left: 50px;
        margin-top: 40px;
    }
    
    .sh-timeline-line {
        left: 18px;
    }
    
    .sh-timeline-marker {
        left: -50px;
        width: 36px;
        height: 36px;
    }
    
    .sh-timeline-number {
        font-size: 14px;
    }
    
    .sh-timeline-content {
        padding: 20px 24px;
    }
    
    .sh-timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sh-timeline-title {
        font-size: 18px;
    }
    
    .sh-timeline-step {
        font-size: 14px;
    }
    
    .sh-timeline-step svg {
        width: 16px;
        height: 16px;
    }
    
    .sh-timeline-phase {
        padding-bottom: 32px;
    }
}

/* ============================================
   CASE STUDIES HIGHLIGHTS SECTION
   ============================================ */
.sh-case-studies-highlights {
    padding: 100px 40px;
    background: #0a0a0f;
}

.sh-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.sh-case-study-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sh-case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    transition: height 0.4s ease;
}

.sh-case-study-orange::before { background: linear-gradient(90deg, #ff8c1a, #ff6b00); }
.sh-case-study-green::before { background: linear-gradient(90deg, #10b981, #059669); }
.sh-case-study-purple::before { background: linear-gradient(90deg, #9b51e0, #7c3aed); }
.sh-case-study-blue::before { background: linear-gradient(90deg, #3b82f6, #2563eb); }

.sh-case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.sh-case-study-card:hover::before {
    height: 6px;
}

.sh-case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sh-case-study-industry {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sh-case-study-industry svg {
    width: 16px;
    height: 16px;
}

.sh-case-study-timeframe {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.sh-case-study-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sh-case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.sh-case-study-stat {
    text-align: left;
}

.sh-case-study-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.sh-case-study-orange .sh-case-study-stat-value { color: #ff8c1a; }
.sh-case-study-green .sh-case-study-stat-value { color: #10b981; }
.sh-case-study-purple .sh-case-study-stat-value { color: #9b51e0; }

.sh-case-study-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sh-case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.sh-case-study-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.sh-case-study-card:hover .sh-case-study-link {
    color: #ff8c1a;
}

.sh-case-study-card:hover .sh-case-study-link svg {
    transform: translateX(5px);
}

.sh-case-studies-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .sh-case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */
.sh-client-logos {
    padding: 80px 40px;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0b12 100%);
}

.sh-client-logos-grid {
    max-width: 1000px;
    margin: 60px auto 0;
}

.sh-client-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sh-client-logo {
    opacity: 0.4;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.sh-client-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.sh-client-logo svg {
    width: 100px;
    height: 40px;
    color: #fff;
}

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */
.sh-comparison-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0d0b12 0%, #0a0a0f 100%);
}

.sh-comparison-table-container {
    max-width: 900px;
    margin: 60px auto 0;
    overflow-x: auto;
}

.sh-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.sh-comparison-table thead th {
    padding: 30px 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-comparison-table thead th.sh-comparison-feature {
    width: 35%;
}

.sh-comparison-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.sh-comparison-header-icon svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.sh-comparison-header-icon.highlight {
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.2), rgba(255, 107, 0, 0.15));
    border: 1px solid rgba(255, 140, 26, 0.3);
}

.sh-comparison-header-icon.highlight svg {
    color: #ff8c1a;
}

.sh-comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease;
}

.sh-comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sh-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.sh-comparison-table td {
    padding: 20px 25px;
    text-align: center;
    vertical-align: middle;
}

.sh-comparison-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: left !important;
}

.sh-comparison-label svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.sh-comparison-internal-cell {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sh-comparison-saleshive-cell {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.sh-comparison-saleshive-cell.highlight {
    background: rgba(255, 140, 26, 0.05);
}

.sh-icon-yes {
    width: 20px;
    height: 20px;
    color: #10b981;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.sh-icon-no {
    width: 20px;
    height: 20px;
    color: #ef4444;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

@media (max-width: 700px) {
    .sh-comparison-table thead th,
    .sh-comparison-table td {
        padding: 15px 12px;
        font-size: 12px;
    }
    
    .sh-comparison-label {
        font-size: 12px;
    }
    
    .sh-comparison-label svg {
        display: none;
    }
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
   ============================================ */
.sh-industries-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0a0a0f 0%, #12101a 50%, #0a0a0f 100%);
}

.sh-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.sh-industry-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.6), rgba(10, 10, 15, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sh-industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 26, 0.3);
    box-shadow: 0 20px 50px rgba(255, 140, 26, 0.1);
}

.sh-industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.15), rgba(255, 107, 0, 0.08));
    border: 1px solid rgba(255, 140, 26, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.sh-industry-icon svg {
    width: 28px;
    height: 28px;
    color: #ff8c1a;
}

.sh-industry-card:hover .sh-industry-icon {
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.25), rgba(255, 107, 0, 0.15));
    border-color: rgba(255, 140, 26, 0.4);
    transform: scale(1.1);
}

.sh-industry-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sh-industry-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .sh-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .sh-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sh-industry-card {
        padding: 20px 15px;
    }
    
    .sh-industry-title {
        font-size: 13px;
    }
}

