/* --- RESET & VARIABLES Inherited from Main Style --- */

/* HERO */
.mentor-hero {
    text-align: center;
    padding: 120px 20px 60px;
}
.mentor-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.mentor-hero p {
    font-size: 1.2rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

/* ROSTER (Horizontal Scroll) */
.roster-section {
    padding: 40px 0;
    overflow: hidden;
}

.section-header {
    max-width: 1024px;
    margin: 0 auto 30px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    background: #e5e5e5;
    padding: 4px;
    border-radius: 20px;
}

.tab {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}

.tab.active {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mentor-scroll-container {
    display: flex;
    gap: 24px;
    padding: 20px 24px 60px; /* Bottom padding for shadow */
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 1200px;
    margin: 0 auto;
    /* Hide Scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.mentor-scroll-container::-webkit-scrollbar { display: none; }

/* MENTOR CARDS */
.mentor-card {
    min-width: 260px;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.card-top img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.badge-verified {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.card-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.job-title { display: block; font-size: 0.85rem; color: #666; margin-bottom: 8px; }
.specialty { font-size: 0.8rem; color: #86868b; background: #f5f5f7; display: inline-block; padding: 4px 8px; border-radius: 6px; }

.card-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

/* PRICING GRID *//* -----------------------------------------------------------------
   FAIRNESS SECTION (Replaces Pricing)
   ----------------------------------------------------------------- */

.fairness-section {
    max-width: 1024px;
    margin: 80px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

/* 1. Header */
.fairness-header {
    text-align: center;
    margin-bottom: 60px;
}

.fairness-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin: 10px 0;
}

.fairness-sub {
    color: #86868b;
    font-size: 1.1rem;
}

.eyebrow-apple {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0071e3;
}

/* 2. The Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rule-item {
    text-align: left;
    padding: 20px;
    background: #fbfbfd;
    border-radius: 16px;
}

.rule-item i {
    font-size: 1.2rem;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.rule-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1d1d1f;
}

.rule-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* 3. The Tiers Container */
.tiers-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr; /* Middle card slightly wider */
    gap: 24px;
    align-items: center; /* Vertically center the side cards */
}

/* Common Tier Styles */
.tier-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: 0.3s ease;
}

.tier-header { margin-bottom: 24px; text-align: center; }

.tier-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.price-block {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
}

.mo { font-size: 1rem; color: #86868b; font-weight: 500; }

.tier-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.tier-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #424245;
    margin-bottom: 12px;
}

.tier-features li i { color: #0071e3; font-size: 0.8rem; }

/* Specific Card Styles */

/* Featured (Middle) */
.featured-tier {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,113,227,0.1);
    transform: scale(1.05); /* Make it pop */
    z-index: 2;
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0071e3;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Patron (Right) */
.patron-tier {
    background: #f5f5f7; /* Subtle difference */
}
.patron-tier .tier-features li i { color: #1d1d1f; } /* Black icons */

/* Buttons */
.btn-tier {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.standard { background: #e5e5ea; color: #1d1d1f; }
.standard:hover { background: #d1d1d6; }

.primary { background: #0071e3; color: white; }
.primary:hover { background: #0077ED; }

.dark { background: #1d1d1f; color: white; }
.dark:hover { opacity: 0.9; }

/* 4. The Critical Sentence */
.value-statement {
    text-align: center;
    margin: 60px 0;
    padding: 0 20px;
}

.value-statement p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.5;
}

/* 5. The Star Protocol Banner */
.star-protocol-banner {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    border: 1px solid rgba(0,113,227,0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.star-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.star-icon {
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.star-text h4 { font-size: 1.1rem; margin-bottom: 4px; color: #1d1d1f; }
.star-text p { font-size: 0.9rem; color: #666; max-width: 500px; }

.btn-quiet {
    color: #0071e3;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .rules-grid { grid-template-columns: 1fr; gap: 12px; }
    .tiers-container { grid-template-columns: 1fr; gap: 30px; }
    .featured-tier { transform: scale(1); }
    .star-protocol-banner { flex-direction: column; text-align: left; gap: 20px; align-items: flex-start; }
    .btn-quiet { align-self: flex-start; }
}