/* Membership Page Styles */

/* Font override for membership page */
.membership-page {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Background Effects */
.membership-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.membership-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.membership-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float-orb-1 20s ease-in-out infinite;
}

.membership-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float-orb-2 25s ease-in-out infinite;
}

.membership-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb-3 15s ease-in-out infinite;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.05); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

/* Container */
.membership-container {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

/* Header */
.membership-header {
    padding: 30px 0;
    margin-bottom: 20px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.back-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-4px);
}

.header-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #ea580c 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.header-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.header-join-btn svg {
    transition: transform 0.3s ease;
}

.header-join-btn:hover svg {
    transform: translateX(3px);
}

/* Main Content */
.membership-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Hero Section */
.membership-hero {
    text-align: center;
    padding: 40px 0;
}

.membership-title {
    font-size: 3em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-subtitle {
    font-size: 1.2em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Benefits Grid */
.benefits-section {
    padding: 20px 0;
}

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

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-featured {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #f97316;
}

.benefit-title {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.benefit-description {
    font-size: 0.95em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
}

.benefit-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.benefit-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.9em;
    color: #f97316;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-card-link:hover .benefit-link-text {
    opacity: 1;
    transform: translateX(4px);
}

/* Courses Section */
.courses-section {
    padding: 40px 0;
}

.courses-title {
    font-size: 1.8em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-color);
}

.courses-intro {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1.05em;
    margin-bottom: 36px;
    font-weight: 300;
}

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

.course-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-card-featured {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(249, 115, 22, 0.25);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.7em;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #f97316;
}

.course-name {
    font-size: 1.15em;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
}

.course-description {
    font-size: 0.9em;
    line-height: 1.65;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
    flex-grow: 1;
}

.course-link-text {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9em;
    color: #f97316;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.course-card:hover .course-link-text {
    transform: translateX(4px);
}

/* Social Proof */
.social-proof-section {
    padding: 40px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 600;
    background: linear-gradient(135deg, #f97316 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 4px;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

/* CTA Section */
.cta-section {
    padding: 20px 0;
}

.cta-card {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9a3412, #ea580c, #f97316, #a855f7, #f97316, #ea580c, #9a3412);
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.cta-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 32px;
    font-weight: 300;
}

.price-display {
    margin-bottom: 28px;
}

.price-amount {
    font-size: 4em;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 1.3em;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #ea580c 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(234, 88, 12, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9em;
    font-weight: 300;
}

.trust-badge svg {
    color: #10b981;
}

.patreon-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    opacity: 0.5;
    font-size: 0.85em;
    font-weight: 300;
}

.patreon-logo {
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-title {
    font-size: 1.8em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    font-size: 1.05em;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.faq-answer {
    font-size: 0.95em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 300;
}

/* Consulting Promo Section */
.consulting-promo-section {
    padding: 20px 0;
    margin-top: 40px;
}

.consulting-promo-card {
    background: linear-gradient(145deg, rgba(109, 40, 217, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(109, 40, 217, 0.25);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consulting-promo-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.consulting-promo-description {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(109, 40, 217, 0.15);
    color: var(--text-color);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1.05em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 40, 217, 0.3);
}

.consulting-promo-link:hover {
    background: rgba(109, 40, 217, 0.25);
    border-color: rgba(109, 40, 217, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.2);
}

.consulting-promo-link svg {
    transition: transform 0.3s ease;
}

.consulting-promo-link:hover svg {
    transform: translateX(4px);
}

/* Learn More Section */
.learn-more-section {
    padding: 20px 0;
    margin-top: 40px;
}

.learn-more-card {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08) 0%, rgba(249, 115, 22, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.learn-more-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.learn-more-description {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 85, 247, 0.15);
    color: var(--text-color);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1.05em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.learn-more-link:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.learn-more-link svg {
    transition: transform 0.3s ease;
}

.learn-more-link:hover svg {
    transform: translateX(4px);
}

/* Footer */
.membership-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    opacity: 0.5;
    font-size: 0.9em;
    font-weight: 300;
}

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

@media (max-width: 768px) {
    .membership-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-join-btn {
        width: 100%;
        justify-content: center;
    }
    
    .membership-title {
        font-size: 2em;
    }
    
    .membership-subtitle {
        font-size: 1.05em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-featured {
        grid-column: span 1;
    }
    
    .courses-title {
        font-size: 1.5em;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.5em;
    }
    
    .price-amount {
        font-size: 3em;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.05em;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .patreon-trust {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .learn-more-card {
        padding: 32px 24px;
    }
    
    .learn-more-title {
        font-size: 1.3em;
    }
    
    .learn-more-link {
        padding: 12px 28px;
        font-size: 1em;
    }
    
    .consulting-promo-card {
        padding: 32px 24px;
    }
    
    .consulting-promo-title {
        font-size: 1.3em;
    }
    
    .consulting-promo-link {
        padding: 12px 28px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .membership-container {
        padding: 20px 15px;
    }
    
    .membership-title {
        font-size: 1.7em;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-title {
        font-size: 1.1em;
    }
    
    .course-card {
        padding: 24px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

