.ss-shell {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 20px;
}

.ss-hero {
    background: radial-gradient(circle at top, #db2777, #be185d);
    color: white;
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 20px 50px rgba(190, 24, 93, 0.18);
    overflow: hidden;
    position: relative;
}

.ss-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    background: rgba(255,255,255,0.08);
    filter: blur(120px);
    top: -220px;
    right: -120px;
}

.ss-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.ss-kicker {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
    color: white;
    margin: 0 0 8px;
}

.ss-hero h1 {
    color: white !important;
    margin: 0 0 10px;
    font-size: 2.6rem;
}

.ss-subtitle {
    margin: 0;
    font-size: 1.04rem;
    opacity: 0.95;
    max-width: 740px;
    line-height: 1.7;
    color: white;
}

.ss-hero-card {
    min-width: 260px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.ss-hero-card span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.92;
    margin-bottom: 7px;
    color: white;
}

.ss-hero-card strong {
    display: block;
    font-size: 1.15rem;
    color: white;
}

.ss-panel {
    background: white;
    border-radius: 26px;
    padding: 28px;
    margin-top: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}

.ss-note {
    background: linear-gradient(135deg, #fdf2f8, #fff);
    border: 1px solid #fbcfe8;
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 24px;
}

.ss-note h2 {
    margin: 0 0 12px;
    color: #111827;
}

.ss-note p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
}

.featured-grid {
    display: grid;
    gap: 22px;
    margin-bottom: 34px;
}

.featured-story {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.featured-story.reverse {
    grid-template-columns: 1fr 330px;
}

.featured-story.reverse img {
    order: 2;
}

.featured-story img,
.member-story img,
.testimonial-card img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    background: #fce7f3;
}

.featured-story img {
    height: 310px;
    border-radius: 22px;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #fce7f3;
    color: #be185d;
    border: 1px solid #fbcfe8;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.featured-content h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.8rem;
}

.featured-content p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.story-stats div {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 18px;
    padding: 14px;
}

.story-stats strong {
    display: block;
    color: #be185d;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.story-stats span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
}

.content-section,
.faq-section,
.final-note {
    margin-top: 34px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1.85rem;
}

.section-heading p {
    margin: 0;
    color: #6b7280;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.testimonial-card img {
    height: 220px;
    border-radius: 18px;
    margin-bottom: 16px;
    object-position: center top;
}

.testimonial-card p {
    margin: 0 0 14px;
    color: #4b5563;
    line-height: 1.75;
}

.testimonial-card strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.testimonial-card span {
    display: block;
    color: #be185d;
    font-weight: 700;
    font-size: 0.9rem;
}

.case-section,
.earnings-section {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 24px;
    padding: 24px;
}

.case-grid,
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.case-card,
.earning-box {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.case-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #be185d, #db2777);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.case-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.08rem;
}

.case-card p {
    margin: 0 0 14px;
    color: #4b5563;
    line-height: 1.75;
}

.case-card ul {
    margin: 0;
    padding-left: 20px;
}

.case-card li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 6px;
}

.member-section {
    background: linear-gradient(135deg, #fdf2f8, #ffffff);
    border: 1px solid #fbcfe8;
    border-radius: 24px;
    padding: 24px;
}

.member-story {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: center;
}

.member-story img {
    height: 260px;
    border-radius: 22px;
}

.member-story h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.8rem;
}

.member-story p {
    margin: 0 0 12px;
    color: #4b5563;
    line-height: 1.8;
}

.earning-box i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fce7f3;
    color: #be185d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.earning-box strong {
    display: block;
    color: #111827;
    margin-bottom: 8px;
}

.earning-box p {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff, #fcfcfd);
    border: 1px solid #e9edf3;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.faq-item[open] {
    border-color: #fbcfe8;
    box-shadow: 0 16px 34px rgba(190, 24, 93, 0.08);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.04rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #fce7f3;
    color: #be185d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: #be185d;
    color: white;
}

.faq-answer {
    padding: 0 22px 22px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    color: #4b5563;
    line-height: 1.85;
    border-top: 1px solid #f1f5f9;
}

.final-note {
    text-align: center;
    background: linear-gradient(135deg, #fdf2f8, #fff);
    border: 1px solid #fbcfe8;
    border-radius: 24px;
    padding: 28px;
}

.final-note h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
}

.final-note p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.final-strong {
    font-weight: 800;
    color: #be185d !important;
    font-size: 1.08rem;
}

@media (max-width: 1050px) {
    .featured-story,
    .featured-story.reverse,
    .member-story {
        grid-template-columns: 1fr;
    }

    .featured-story.reverse img {
        order: 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .case-grid,
    .earnings-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ss-shell {
        padding: 0 14px;
        margin-top: 20px;
    }

    .ss-hero {
        padding: 28px 22px;
        border-radius: 22px;
    }

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

    .ss-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .ss-hero-card {
        width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .featured-content h2,
    .member-story h2 {
        font-size: 1.55rem;
    }

    .featured-story img,
    .member-story img {
        height: 240px;
    }

    .faq-item summary {
        padding: 17px 18px;
        font-size: 0.98rem;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .ss-note,
    .featured-story,
    .testimonial-card,
    .case-section,
    .case-card,
    .member-section,
    .earnings-section,
    .earning-box,
    .final-note {
        padding: 18px;
        border-radius: 18px;
    }

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

    .featured-story img,
.member-story img {
    height: 220px;
}

.testimonial-card img {
    height: 260px;
}
}