/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
    /* Logo should be white/transparent - no filter needed */
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.nav-link:hover {
    color: #fbbf24;
}

.cta-button {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f59e0b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-announcement {
    background: #fbbf24;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-cta {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: #f59e0b;
}

/* Who It's For Section */
.who-its-for {
    padding: 80px 0;
    background: white;
}

.who-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
}

.who-description {
    text-align: left;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.participant-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.info-box.confidentiality {
    border-left-color: #92400e;
    background: linear-gradient(135deg, #fef3c7, #f8fafc);
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

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

.info-box strong {
    color: #2563eb;
    font-weight: 600;
}

/* Pillars Section */
.pillars {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pillar-card.yellow1 .pillar-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.pillar-card.yellow2 .pillar-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
}

.pillar-card.gray1 .pillar-icon {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #1f2937;
}

.pillar-card.gray2 .pillar-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: #ffffff;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.pillar-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* What's Included Section */
.included {
    padding: 80px 0;
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.included-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1f2937;
}

.included-column ul {
    list-style: none;
}

.included-column li {
    padding: 10px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
}

.included-column li:before {
    content: "✓";
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Where It Happens Section */
.where-it-happens {
    padding: 80px 0;
    background: #f8fafc;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.location-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #fbbf24;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #92400e;
    font-size: 2rem;
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.location-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.step-number {
    background: #fbbf24;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
}

/* Trust & Accountability Section */
.trust-accountability {
    padding: 80px 0;
    background: #f8fafc;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.trust-column h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
}

.trust-list, .accountability-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-list li, .accountability-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
}

.trust-list li:last-child, .accountability-list li:last-child {
    border-bottom: none;
}

.trust-list li i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.accountability-list li i {
    color: #92400e;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}



/* Membership Criteria Section */
.criteria {
    padding: 80px 0;
    background: white;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-column {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.criteria-column h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1f2937;
}

.criteria-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.criteria-column li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #4b5563;
    line-height: 1.5;
}

.requirements-list li i {
    color: #fbbf24;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.standards-list li i {
    color: #92400e;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.criteria-column.requirements {
    border-left: 4px solid #fbbf24;
}

.criteria-column.standards {
    border-left: 4px solid #92400e;
}

/* Investment Options Section */
.investment {
    padding: 80px 0;
    background: white;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.investment-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.investment-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.price-description {
    color: #92400e;
    font-weight: 500;
    margin-bottom: 30px;
}

.benefits {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.benefits li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
}

.benefits li:before {
    content: "✓";
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.invest-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.invest-button.primary {
    background: #1f2937;
    color: white;
}

.invest-button.primary:hover {
    background: #111827;
}

.invest-button.secondary {
    background: #fbbf24;
    color: #000;
}

.invest-button.secondary:hover {
    background: #f59e0b;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
}



/* Footer */
.footer {
    background: #000;
    color: white;
}

.footer-main {
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-mission {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.footer-mission p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link.linkedin {
    background: #fbbf24;
    color: #000;
}



.social-link:hover {
    opacity: 0.8;
}

.contact-link {
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.contact-link:hover {
    color: #dc2626;
}

.footer-copyright {
    background: #3b82f6;
    padding: 15px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    

    
    .hero-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    

    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-mission {
        margin: 0;
        max-width: 100%;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}