/* ============================================
   SUCCESS STORIES - DEDICATED STYLESHEET
   ============================================ */

/* Success Hero */
.success-hero {
    background: linear-gradient(135deg, #005696 0%, #003a6e 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.success-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.success-hero .section-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #a5d6a7;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.success-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: white;
}

.success-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.success-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.success-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.success-breadcrumb a:hover { color: #4CAF50; }
.success-breadcrumb i { font-size: 0.65rem; opacity: 0.5; }

/* Featured Story Section */
.featured-section {
    padding: 80px 0;
    background: white;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-image-box {
    position: relative;
}

.featured-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.featured-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    color: #4CAF50;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

/* Stories Grid */
.stories-main {
    padding: 80px 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-card-image {
    height: 220px;
    overflow: hidden;
    background: #eef2f7;
    position: relative;
}

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

.story-industry {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: #005696;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.story-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-client-info {
    margin-bottom: 1.25rem;
}

.story-company {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: block;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.story-results-preview {
    background: #f1f5f9;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.story-results-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #005696;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.story-results-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.story-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.story-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #005696;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-link:hover {
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 1200px) {
    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-image-box img {
        min-height: 300px;
    }
    .featured-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .success-hero {
        padding: 110px 0 60px;
    }
    .success-hero-title {
        font-size: 1.85rem !important;
        margin-bottom: 1rem;
    }
    .success-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .success-breadcrumb {
        margin-top: 1rem;
    }
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
