/* ============================================
   Company Pages Styles (Careers & Partners)
   Dark-themed design matching site design system
   ============================================ */

/* Page-specific CSS Variables */
.company-page {
    --lime-green: #D6F08D;
    --lime-green-dark: #b8d66f;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --darkest-bg: #0f3460;
    --text-muted: #adb5bd;
    --border-color: #2d3748;
    --alt-bg: #0f1419;
}

/* ============================================
   Hero Section
   ============================================ */
.company-page .hero-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 80px 0;
    margin: -16px -12px 60px -12px;
    border-bottom: 3px solid var(--lime-green);
}

.company-page .hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--lime-green);
    margin-bottom: var(--space-5);
}

.company-page .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Section Title
   ============================================ */
.company-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================
   Feature Cards
   ============================================ */
.company-page .feature-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 240, 141, 0.2);
    border-color: var(--lime-green);
}

.company-page .feature-icon {
    font-size: 3rem;
    color: var(--lime-green);
    margin-bottom: 20px;
}

.company-page .feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.company-page .feature-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Partner Types Section
   ============================================ */
.company-page .partner-types-section {
    background: var(--alt-bg);
    padding: 60px 0;
    margin: 60px -12px;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.company-page .partner-type-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.company-page .partner-type-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 240, 141, 0.15);
}

.company-page .partner-type-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.company-page .partner-type-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.company-page .partner-type-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================
   Partner Benefits List (with checkmarks)
   ============================================ */
.company-page .partner-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-page .partner-benefits-list li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.company-page .partner-benefits-list li::before {
    content: "\2713";
    color: var(--lime-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ============================================
   Benefit Boxes (Partner Benefits)
   ============================================ */
.company-page .benefits-section {
    margin: 60px 0;
}

.company-page .benefit-box {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px solid var(--lime-green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.company-page .benefit-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 10px;
    line-height: 1;
}

.company-page .benefit-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ============================================
   Process Steps (numbered circles)
   ============================================ */
.company-page .process-step {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border-left: 4px solid var(--lime-green);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.company-page .process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--lime-green);
    color: var(--dark-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.company-page .process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lime-green);
    display: inline-block;
    margin-bottom: 10px;
}

.company-page .process-description {
    color: var(--text-muted);
    margin-left: 55px;
    line-height: 1.6;
}

/* ============================================
   CTA Section (inverted lime background)
   ============================================ */
.company-page .cta-section {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--lime-green-dark) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.company-page .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.company-page .cta-text {
    font-size: 1.2rem;
    color: var(--border-color);
    margin-bottom: 30px;
}

.company-page .btn-dark-custom {
    background: var(--dark-bg);
    color: var(--lime-green);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.company-page .btn-dark-custom:hover {
    background: var(--darkest-bg);
    color: var(--lime-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Culture Section (Careers page)
   ============================================ */
.company-page .culture-section {
    background: var(--alt-bg);
    padding: 60px 0;
    margin: 60px -12px;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.company-page .culture-item {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border-left: 4px solid var(--lime-green);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.company-page .culture-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lime-green);
    margin-bottom: 10px;
}

.company-page .culture-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Metrics Section (Careers page)
   ============================================ */
.company-page .metrics-section {
    margin: 60px 0;
}

.company-page .metric-box {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px solid var(--lime-green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.company-page .metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 10px;
    line-height: 1;
}

.company-page .metric-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ============================================
   Openings Section (Careers page)
   ============================================ */
.company-page .openings-section {
    margin: 60px 0;
    text-align: center;
}

.company-page .no-openings-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-page .no-openings-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.company-page .no-openings-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.company-page .no-openings-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 991px) {
    .company-page .hero-title {
        font-size: var(--font-size-5xl);
    }

    .company-page .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .company-page .section-title {
        font-size: 2rem;
    }

    .company-page .partner-type-card {
        padding: 30px;
    }

    .company-page .cta-section {
        padding: 40px 30px;
    }

    .company-page .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .company-page .hero-section {
        padding: 50px 0;
        margin: -16px -12px 40px -12px;
    }

    .company-page .hero-title {
        font-size: var(--font-size-4xl);
    }

    .company-page .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .company-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .company-page .feature-card,
    .company-page .partner-type-card {
        padding: 25px;
    }

    .company-page .benefit-box,
    .company-page .metric-box {
        padding: 25px;
        min-height: 140px;
    }

    .company-page .benefit-value,
    .company-page .metric-value {
        font-size: 2.5rem;
    }

    .company-page .process-description {
        margin-left: 0;
        margin-top: 15px;
    }

    .company-page .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .company-page .cta-title {
        font-size: 1.8rem;
    }

    .company-page .cta-text {
        font-size: 1rem;
    }

    .company-page .btn-dark-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .company-page .partner-types-section,
    .company-page .culture-section {
        padding: 40px 0;
        margin: 40px -12px;
    }

    .company-page .no-openings-card {
        padding: 30px 20px;
    }

    .company-page .no-openings-icon {
        font-size: 3rem;
    }
}
