/* ============================================
   SERVICES SECTION
   ============================================ */
.sh-services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sh-services-grid.sh-services-grid-3 {
    max-width: 1100px;
}

.sh-services-grid.sh-services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
}

.sh-service-card {
    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: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sh-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c1a, #9b51e0);
    opacity: 0;
    transition: opacity 0.3s;
}

.sh-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 26, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.sh-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.2), rgba(155, 81, 224, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sh-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff8c1a;
    fill: none;
    stroke-width: 2;
}

.sh-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.sh-service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 24px;
}

.sh-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8c1a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.sh-service-link:hover {
    gap: 12px;
    color: #ffb347;
}

.sh-service-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================
   PLATFORM SECTION
   ============================================ */
.sh-platform {
    background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
}

.sh-platform-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sh-platform-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sh-platform-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.sh-platform-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 140, 26, 0.2);
}

.sh-platform-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.15), rgba(155, 81, 224, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-platform-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff8c1a;
    fill: none;
    stroke-width: 2;
}

.sh-platform-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.sh-platform-feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.sh-platform-visual {
    position: relative;
}

.sh-platform-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.sh-video {
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

.sh-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(155, 81, 224, 0.1) 0%, transparent 70%);
}

.sh-video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sh-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 100px rgba(155, 81, 224, 0.1);
    aspect-ratio: 16 / 9;
    background: #000;
}

.sh-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.sh-video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 15, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.sh-video-play {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff8c1a, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.5);
    transition: all 0.4s;
}

.sh-video-placeholder:hover .sh-video-play {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(255, 107, 0, 0.7);
}

.sh-video-play svg {
    width: 40px;
    height: 40px;
    fill: #000;
    margin-left: 5px;
}

/* ============================================
   TESTIMONIALS SECTION (TRUSTPILOT)
   ============================================ */
.sh-trustpilot-widget-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 40px;
}

.sh-reviews-link {
    text-align: center;
}

/* Legacy testimonials grid (kept for reference) */
.sh-testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sh-testimonial-card {
    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: 40px;
    transition: all 0.3s;
}

.sh-testimonial-card:hover {
    border-color: rgba(255, 140, 26, 0.2);
    transform: translateY(-5px);
}

.sh-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.sh-testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #ff8c1a;
}

.sh-testimonial-quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 24px;
    font-style: italic;
}

.sh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sh-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #9b51e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.sh-testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.sh-testimonial-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.sh-pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.sh-pricing-card {
    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: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.sh-pricing-card.featured {
    border-color: rgba(255, 140, 26, 0.4);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.15);
}

.sh-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, #ff8c1a, #ff6b00);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sh-pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.sh-pricing-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
}

.sh-pricing-price {
    margin-bottom: 30px;
}

.sh-pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.sh-pricing-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.sh-pricing-commitment {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 8px 0 0;
}

.sh-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.sh-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sh-pricing-features li:last-child {
    border-bottom: none;
}

.sh-pricing-features svg {
    width: 18px;
    height: 18px;
    stroke: #28c840;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.sh-pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.sh-pricing-btn-primary {
    background: linear-gradient(135deg, #ff8c1a, #ff6b00);
    color: #000 !important;
    position: relative;
    overflow: hidden;
}

.sh-pricing-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-pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.sh-pricing-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.sh-pricing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 140, 26, 0.3);
}

/* ============================================
   TRUST/STATS SECTION
   ============================================ */
.sh-trust {
    background: linear-gradient(135deg, #12121a 0%, #1a0f1f 50%, #12121a 100%);
    position: relative;
    overflow: hidden;
}

.sh-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 40% 40% at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(155, 81, 224, 0.08) 0%, transparent 60%);
}

.sh-trust-stats {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sh-trust-stat {
    text-align: center;
}

.sh-trust-stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.sh-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.sh-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.sh-faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

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

.sh-faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #ff8c1a;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sh-faq-item.active .sh-faq-question svg {
    transform: rotate(180deg);
}

.sh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.sh-faq-item.active .sh-faq-answer {
    max-height: 300px;
}

.sh-faq-answer-content {
    padding: 0 30px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.sh-blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sh-blog-card {
    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;
    overflow: hidden;
    transition: all 0.3s;
}

.sh-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 26, 0.2);
}

.sh-blog-card-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.1), rgba(155, 81, 224, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-blog-card-content {
    padding: 30px;
}

.sh-blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 140, 26, 0.1);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ff8c1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sh-blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.4;
}

.sh-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.sh-blog-card-title a:hover {
    color: #ff8c1a;
}

.sh-blog-card-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.sh-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg, #12121a 0%, #1a0f1f 50%, #12121a 100%);
    position: relative;
    overflow: hidden;
}

.sh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

.sh-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(155, 81, 224, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 26, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.sh-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.sh-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 40px;
    line-height: 1.7;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sh-services-grid,
    .sh-services-grid.sh-services-grid-6,
    .sh-testimonials-grid,
    .sh-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sh-platform-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sh-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .sh-pricing-card.featured {
        transform: none;
    }
    
    .sh-trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sh-services-grid,
    .sh-services-grid.sh-services-grid-6,
    .sh-testimonials-grid,
    .sh-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .sh-service-card {
        padding: 30px;
    }
    
    .sh-trust-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sh-trust-stat-number {
        font-size: 42px;
    }
    
    .sh-cta-title {
        font-size: 36px;
    }
    
    .sh-cta-buttons {
        flex-direction: column;
    }
}

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

