/* ============================================
   GOOD FORTUNE 888 — Workshops / Partnership Page
   /workshops.html
   ============================================ */

/* ---- Partnership Hero ---- */
.ws-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.ws-hero::before {
    content: '888';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Syne', sans-serif;
    font-size: clamp(180px, 28vw, 440px);
    font-weight: 800;
    color: var(--gold);
    opacity: 0.035;
    pointer-events: none;
    line-height: 1;
}

.ws-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ws-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--cream);
}

.ws-hero-title .gold {
    color: var(--gold);
    display: block;
}

.ws-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.ws-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ws-hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.ws-trust-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Hero Right Card ---- */
.ws-hero-visual {
    display: flex;
    justify-content: center;
}

.ws-hero-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 20px;
    padding: 36px 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(212, 168, 67, 0.06);
}

.ws-card-badge {
    display: inline-block;
    background: rgba(45, 106, 79, 0.15);
    border: 1px solid rgba(64, 145, 108, 0.3);
    color: #40916C;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.ws-card-stat {
    text-align: center;
    margin-bottom: 20px;
}

.ws-card-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.ws-card-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.ws-card-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.ws-card-modules {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.ws-card-module {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws-card-module:last-child {
    border-bottom: none;
}

.ws-card-cta {
    display: block;
    text-align: center;
    background: var(--red);
    color: var(--cream);
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ws-card-cta:hover {
    background: var(--red-light);
    color: var(--cream);
    box-shadow: 0 0 24px var(--glow-red);
}

/* ---- Section Header (centered) ---- */
.ws-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.ws-section-header .section-subtitle {
    max-width: 560px;
}

/* ---- Who We Serve ---- */
.ws-for {
    padding: 100px 0;
    background: var(--dark-card);
}

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

.ws-audience-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.ws-audience-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.ws-audience-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.ws-audience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cream);
}

.ws-audience-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ws-audience-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-light);
    background: rgba(45, 106, 79, 0.12);
    border: 1px solid rgba(64, 145, 108, 0.25);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ---- How It Works ---- */
.ws-how {
    padding: 100px 0;
}

.ws-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
}

.ws-step {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.ws-step:hover {
    border-color: rgba(212, 168, 67, 0.25);
}

.ws-step-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.ws-step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cream);
}

.ws-step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.ws-step-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.3;
    align-self: center;
    padding-top: 20px;
    flex-shrink: 0;
}

/* ---- Modules Grid ---- */
.ws-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ws-module-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ws-module-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ws-module-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ws-module-card:hover::after {
    opacity: 1;
}

.ws-module-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ws-module-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.ws-module-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
}

.ws-module-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Benefits Grid ---- */
.ws-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ws-benefit-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.ws-benefit-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-4px);
}

.ws-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.ws-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
}

.ws-benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Funding Section ---- */
.ws-funding {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.1), rgba(212, 168, 67, 0.05), var(--dark));
}

.ws-funding-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ws-funding-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 500px;
}

.ws-funding-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ws-funding-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cream);
}

.ws-funding-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.ws-funding-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ws-funding-stat-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.06);
}

.ws-funding-stat {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.ws-funding-stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ws-funding-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ws-funding-breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ws-funding-breakdown-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ws-breakdown-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    opacity: 0.6;
}

/* ---- Social Proof ---- */
.ws-proof {
    padding: 100px 0;
}

.ws-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    text-align: center;
}

.ws-proof-stat {
    padding: 16px;
}

.ws-proof-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.ws-proof-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.ws-proof-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ws-proof-placeholder {
    max-width: 640px;
    margin: 0 auto;
}

.ws-placeholder-card {
    background: var(--dark);
    border: 1px dashed rgba(212, 168, 67, 0.2);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.ws-placeholder-quote {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.ws-placeholder-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- FAQ ---- */
.ws-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.ws-faq-item {
    padding: 28px 32px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.ws-faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ws-faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Final CTA ---- */
.ws-cta-final {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(139, 26, 26, 0.1) 50%, var(--dark) 100%);
}

.ws-cta-final-inner {
    max-width: 700px;
    margin: 0 auto;
}

.ws-cta-final h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ws-cta-final h2 .gold {
    color: var(--gold);
}

.ws-cta-final p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.ws-cta-final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ws-cta-email-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

/* ============================================
   RESPONSIVE — Workshops Page
   ============================================ */

@media (max-width: 1100px) {
    .ws-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .ws-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ws-hero-desc {
        margin: 0 auto 32px;
    }

    .ws-hero-ctas {
        justify-content: center;
    }

    .ws-hero-trust {
        align-items: center;
    }

    .ws-hero-visual {
        order: -1;
    }

    .ws-hero-card {
        max-width: 340px;
    }

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

    .ws-steps {
        grid-template-columns: 1fr;
    }

    .ws-step-arrow {
        display: none;
    }

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

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

    .ws-funding-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .ws-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ws-audience-grid {
        grid-template-columns: 1fr;
    }

    .ws-modules-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ws-hero {
        padding: 100px 0 60px;
    }

    .ws-placeholder-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .ws-hero-title {
        font-size: 2rem;
    }

    .ws-proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ws-proof-number {
        font-size: 2rem;
    }

    .ws-cta-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .ws-cta-final-actions .btn-primary,
    .ws-cta-final-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WORKSHOPS RESPONSIVE v2 — Full Breakpoint Coverage
   ============================================ */

/* ---- Tablet (769px–1024px) ---- */
@media (min-width: 769px) and (max-width: 1024px) {
    .ws-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .ws-hero-card {
        max-width: 320px;
    }

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

/* ---- Mobile section padding (≤768px) ---- */
@media (max-width: 768px) {
    .ws-for {
        padding: 64px 0;
    }

    .ws-how {
        padding: 64px 0;
    }

    .ws-funding {
        padding: 64px 0;
    }

    .ws-proof {
        padding: 64px 0;
    }

    .ws-cta-final {
        padding: 80px 0;
    }

    .ws-section-header {
        margin-bottom: 40px;
    }

    /* Funding breakdown visual on mobile */
    .ws-funding-stat {
        font-size: 3.2rem;
    }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
    .ws-hero {
        padding: 90px 0 48px;
    }

    .ws-for {
        padding: 48px 0;
    }

    .ws-how {
        padding: 48px 0;
    }

    .ws-funding {
        padding: 48px 0;
    }

    .ws-proof {
        padding: 48px 0;
    }

    .ws-cta-final {
        padding: 64px 0;
    }

    .ws-hero-card {
        padding: 28px 24px;
    }

    .ws-step {
        padding: 24px 20px;
    }

    .ws-module-card {
        padding: 24px 18px;
    }

    .ws-benefit-card {
        padding: 28px 20px;
    }

    .ws-faq-item {
        padding: 24px;
    }

    .ws-funding-stat {
        font-size: 2.8rem;
    }

    .ws-card-stat-number {
        font-size: 3rem;
    }

    .ws-funding-stat-card {
        padding: 24px;
    }

    .ws-placeholder-card {
        padding: 28px 20px;
    }

    .ws-audience-card {
        padding: 28px 20px;
    }
}

/* ---- Extra small (≤375px) ---- */
@media (max-width: 375px) {
    .ws-hero-title {
        font-size: 1.7rem;
    }

    .ws-hero-desc {
        font-size: 1rem;
    }

    .ws-card-stat-number {
        font-size: 2.5rem;
    }

    .ws-proof-number {
        font-size: 1.8rem;
    }

    .ws-proof-label {
        font-size: 0.82rem;
    }

    .ws-proof-desc {
        font-size: 0.78rem;
    }

    .ws-funding-stat {
        font-size: 2.5rem;
    }
}

/* ---- Module Card Links ---- */
a.ws-module-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

a.ws-module-card-link h3 {
    color: var(--cream);
}

a.ws-module-card-link:hover {
    border-color: rgba(212, 168, 67, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    color: inherit;
}

a.ws-module-card-link:hover h3 {
    color: var(--gold-light);
}

.ws-module-detail-link {
    display: block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

a.ws-module-card-link:hover .ws-module-detail-link {
    color: var(--gold-light);
}
