/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 5px;
}

.tagline {
    font-size: 12px;
    color: #666;
    font-weight: 300;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 30px;
    color: #d4af37;
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #cccccc;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #d4af37;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.problem-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ff6b6b;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.problem-text ul {
    margin: 30px 0;
    padding-left: 20px;
}

.problem-text li {
    margin-bottom: 10px;
    color: #cccccc;
}

.problem-conclusion {
    font-style: italic;
    color: #d4af37 !important;
    font-size: 1.2rem !important;
    margin-top: 40px !important;
}

.problem-final {
    font-weight: 600 !important;
    color: #ffffff !important;
    text-align: center;
    font-size: 1.2rem !important;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    padding: 100px 0;
    background: #000000;
}

.pillars-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #d4af37;
}

.pillars-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.pillar {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.pillar p {
    color: #cccccc;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.testimonials-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #d4af37;
}

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

.testimonial {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ffffff;
}

.testimonial cite {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
}

.metrics {
    text-align: center;
}

.metrics h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.metric-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: #000000;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
}

.process-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 600;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.process-step p {
    color: #cccccc;
}

.process-details {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.process-details p {
    margin-bottom: 10px;
    color: #cccccc;
}

.process-details strong {
    color: #d4af37;
}

/* ===== HIERARCHY SECTION ===== */
.hierarchy-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.hierarchy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #d4af37;
}

.hierarchy-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hierarchy-levels {
    max-width: 800px;
    margin: 0 auto;
}

.level {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.level-bar {
    width: 200px;
    height: 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
}

.level-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 10px;
}

.level-6 .level-bar::after { width: 100%; }
.level-5 .level-bar::after { width: 85%; }
.level-4 .level-bar::after { width: 70%; }
.level-3 .level-bar::after { width: 55%; }
.level-2 .level-bar::after { width: 40%; }
.level-1 .level-bar::after { width: 25%; }

.level-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.level-content p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: #000000;
}

.benefits-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #d4af37;
}

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

.benefit {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.benefit p {
    color: #cccccc;
    line-height: 1.6;
}

/* ===== WARNING SECTION ===== */
.warning-section {
    padding: 100px 0;
    background: #1a1a1a;
    text-align: center;
}

.warning-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #d4af37;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
}

.warning-not {
    font-size: 1.2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: 600;
}

.warning-content ul {
    list-style: none;
    margin: 30px 0;
}

.warning-content li {
    margin-bottom: 10px;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.warning-content li::before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.warning-are {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
    margin: 40px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.warning-content p {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.warning-final {
    font-size: 1.3rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-top: 40px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.close {
    color: #d4af37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
}

.close:hover {
    color: #ffffff;
}

.modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
}

.modal-content > p {
    text-align: center;
    margin-bottom: 40px;
    color: #cccccc;
    font-size: 1.1rem;
}

.role-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.role-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.role-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.role-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.role-card p {
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.6;
}

.role-card ul {
    list-style: none;
    text-align: left;
}

.role-card li {
    margin-bottom: 8px;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.role-card li::before {
    content: '✓';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #666;
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-contact strong {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== CARTEL DIVISION SECTION ===== */
.cartel-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cartel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cartel-header {
    text-align: center;
    margin-bottom: 80px;
}

.cartel-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cartel-subtitle {
    font-size: 1.5rem;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.cartel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cartel-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.cartel-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cartel-features .feature {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cartel-features .feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.cartel-features .feature h4 {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cartel-features .feature p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cartel-access {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.cartel-access h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.cartel-access ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.cartel-access ul li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 25px;
}

.cartel-access ul li::before {
    content: '→';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cartel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cartel-stats .stat {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cartel-stats .stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.cartel-stats .stat .label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cartel-note {
    color: #888;
    font-style: italic;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cartel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cartel-features {
        grid-template-columns: 1fr;
    }
    
    .cartel-stats {
        grid-template-columns: 1fr;
    }
    
    .cartel-header h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .level {
        flex-direction: column;
        text-align: center;
    }
    
    .level-bar {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .role-selection {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .pillar, .benefit {
        padding: 30px 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

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

.text-gold {
    color: #d4af37;
}

.bg-dark {
    background-color: #1a1a1a;
}

.bg-black {
    background-color: #000000;
}

