/* ========== SUCCESS STORIES PAGE STYLES ========== */

/* Hero Section */
.ss-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.ss-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ss-hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ss-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ss-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 24px;
}

.ss-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ss-hero h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ss-hero > .container > .ss-hero-content > p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ss-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.ss-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.ss-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.ss-stat-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* Section Base */
.ss-section {
    padding: 80px 0;
}

.ss-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ss-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ss-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.ss-section .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}

/* Benefits Section */
.ss-benefits-section {
    background: #f8fafc;
}

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

.ss-benefit-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ss-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.ss-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ss-benefit-icon i {
    font-size: 24px;
    color: white;
}

.ss-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.ss-benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Stories Section */
.ss-stories-section {
    background: white;
}

.ss-story-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.ss-story-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ss-story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.ss-story-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 10px;
}

.ss-story-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.ss-story-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.ss-story-client strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.ss-story-client span {
    font-size: 13px;
    color: #64748b;
}

/* Story Body */
.ss-story-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.ss-story-challenge h4,
.ss-story-solution h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-story-challenge h4 {
    color: #dc2626;
}

.ss-story-solution h4 {
    color: #059669;
}

.ss-story-challenge p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.ss-story-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-story-solution li {
    font-size: 14px;
    color: #475569;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.ss-story-solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Results */
.ss-story-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.ss-result-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 1px solid #bae6fd;
}

.ss-result-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0284c7;
    margin-bottom: 4px;
}

.ss-result-label {
    font-size: 12px;
    color: #0369a1;
    font-weight: 600;
}

/* Quote */
.ss-story-quote {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    position: relative;
}

.ss-story-quote > i {
    font-size: 24px;
    color: #2563eb;
    opacity: 0.3;
    margin-bottom: 8px;
    display: block;
}

.ss-story-quote p {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 12px;
}

.ss-quote-author {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* Reviews Section */
.ss-reviews-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

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

.ss-review-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ss-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.ss-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.ss-review-card > p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px;
}

.ss-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.ss-review-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.ss-review-author span {
    font-size: 12px;
    color: #64748b;
}

/* Services Section */
.ss-services-section {
    background: white;
}

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

.ss-service-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ss-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: #bfdbfe;
}

.ss-service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ss-service-icon i {
    font-size: 20px;
    color: white;
}

.ss-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.ss-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.ss-service-card li {
    font-size: 13px;
    color: #475569;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-service-card li i {
    color: #10b981;
    font-size: 12px;
}

.ss-service-link {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.ss-service-link:hover {
    color: #1d4ed8;
}

/* CTA Section */
.ss-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
}

.ss-cta-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ss-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.ss-cta-box > p {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.ss-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ss-cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.ss-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.ss-cta-note {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.ss-cta-note i {
    color: #10b981;
    margin-right: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
    .ss-hero h1 {
        font-size: 2.5rem;
    }

    .ss-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-story-body {
        grid-template-columns: 1fr;
    }

    .ss-story-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ss-hero {
        padding: 60px 0 50px;
    }

    .ss-hero h1 {
        font-size: 2rem;
    }

    .ss-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ss-stat {
        padding: 16px;
    }

    .ss-stat-number {
        font-size: 1.5rem;
    }

    .ss-section {
        padding: 50px 0;
    }

    .ss-section .section-header h2 {
        font-size: 1.75rem;
    }

    .ss-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ss-story-card {
        padding: 24px;
    }

    .ss-story-header {
        flex-direction: column;
    }

    .ss-story-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-reviews-grid {
        grid-template-columns: 1fr;
    }

    .ss-services-grid {
        grid-template-columns: 1fr;
    }

    .ss-cta-box h2 {
        font-size: 1.75rem;
    }

    .ss-cta-buttons {
        flex-direction: column;
    }

    .ss-cta-buttons .btn-primary,
    .ss-cta-buttons .btn-outline {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .ss-hero-stats {
        grid-template-columns: 1fr;
    }

    .ss-story-results {
        grid-template-columns: 1fr;
    }

    .ss-story-card {
        padding: 20px;
    }
}
