/* ===== Mentori Page ===== */
/* Consistent with planul-complet design system */
/* Brand: #2d6078 (primary), #3a7a92 (secondary), #5fb8b0 (accent), #1a3d4e (dark) */

/* ===== Hero Section ===== */
.mentors-hero {
    background: linear-gradient(180deg, #f0f4f3 0%, #e8eeed 50%, #dfe6e4 100%);
    padding: 130px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mentors-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(45, 96, 120, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(95, 184, 176, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mentors-hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mentors-hero-title {
    font-size: 46px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.mentors-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: #3a7a92;
}

.mentors-hero-subtitle {
    font-size: 18px;
    color: #5a7a80;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats-mentors {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 96, 120, 0.08);
    border-radius: 16px;
    padding: 24px 36px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 96, 120, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 96, 120, 0.1);
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2d6078;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: #6b8a8e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== Hero - Background Image Variant ===== */
.mentors-hero.mentors-hero-bg {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 160px 20px 100px;
}

.mentors-hero.mentors-hero-bg::before {
    /* background: linear-gradient(135deg, rgba(26, 61, 78, 0.78) 0%, rgba(45, 96, 120, 0.65) 60%, rgba(58, 122, 146, 0.58) 100%); */
    pointer-events: none;
}

.mentors-hero.mentors-hero-bg .mentors-hero-title {
    color: #ffffff;
}

.mentors-hero.mentors-hero-bg .mentors-hero-title em {
    color: #8fd8d0;
}

.mentors-hero.mentors-hero-bg .mentors-hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.mentors-hero.mentors-hero-bg .hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mentors-hero.mentors-hero-bg .hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mentors-hero.mentors-hero-bg .hero-stat-number {
    color: #ffffff;
}

.mentors-hero.mentors-hero-bg .hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Section Titles (reusable) ===== */
.mentors-section-title {
    font-size: 34px;
    font-weight: 400;
    color: #1a3d4e;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.mentors-section-title strong {
    font-weight: 700;
}

.mentors-section-subtitle {
    font-size: 16px;
    color: #6b8a8e;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Featured Mentors ===== */
.featured-mentors {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7f6 100%);
    padding: 80px 20px;
}

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

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 48px;
}

.featured-grid .mentor-card {
    width: calc((100% - 56px) / 3);
}

/* Mentor Card */
.mentor-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(45, 96, 120, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(45, 96, 120, 0.06);
}

.mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45, 96, 120, 0.12);
    border-color: rgba(45, 96, 120, 0.12);
}

.mentor-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 2;
    white-space: nowrap;
}

.mentor-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(225deg, #2f6684, #4da8a0);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.04);
}

.mentor-info {
    padding: 28px 26px 26px;
    text-align: center;
}

.mentor-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 6px;
}

.mentor-role {
    font-size: 13px;
    color: #6b8a8e;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Subject badges - same style as planul-complet profesori */
.mentor-subject-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.mentor-subject-badge.subject-biologie {
    background: linear-gradient(90deg, #C2223C, #E36646);
    color: #fff;
}
.mentor-subject-badge.subject-biologie-corint {
    background: linear-gradient(90deg, #E36646, #D55451);
    color: #fff;
}
.mentor-subject-badge.subject-chimie {
    background: linear-gradient(90deg, #0a122a, #253978);
    color: #fff;
}
.mentor-subject-badge.subject-fizica {
    background: linear-gradient(90deg, #114306, #209E00);
    color: #fff;
}

/* Mentor stats row */
.mentor-stats-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #f5f8f7;
    border-radius: 12px;
    font-size: 13px;
    text-align: left;
}

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

.mentor-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #2d6078;
    display: block;
    line-height: 1.2;
}

.mentor-stat-lbl {
    font-size: 11px;
    color: #6b8a8e;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Quote */
.mentor-quote {
    font-size: 13px;
    line-height: 1.65;
    color: #5a7a80;
    font-style: italic;
    background: #f8fafb;
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 3px solid #5fb8b0;
    margin: 0 0 20px 0;
    text-align: left;
}

/* Tags */
.mentor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 22px;
}

.mentor-tag {
    background: rgba(45, 96, 120, 0.07);
    color: #2d6078;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mentor-tag:hover {
    background: rgba(45, 96, 120, 0.14);
}

/* Contact button */
.mentor-contact-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mentor-contact-btn:hover {
    background: linear-gradient(135deg, #245266, #2d6078);
    box-shadow: 0 6px 20px rgba(45, 96, 120, 0.25);
    transform: translateY(-1px);
}

/* ===== Team Section ===== */
.mentor-team {
    background: linear-gradient(180deg, #f2f4f3 0%, #eaedec 50%, #f0f2f1 100%);
    padding: 80px 20px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.team-member {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(45, 96, 120, 0.05);
    box-shadow: 0 2px 10px rgba(45, 96, 120, 0.04);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45, 96, 120, 0.1);
    border-color: rgba(45, 96, 120, 0.1);
}

.team-member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #e5f2f0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a3d4e;
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 13px;
    color: #2d6078;
    font-weight: 500;
    margin-bottom: 2px;
}

.team-member-uni {
    font-size: 12px;
    color: #8a9fa5;
    margin-bottom: 14px;
}

.team-member-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rating-stars {
    color: #f0a500;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #1a3d4e;
}

/* ===== Mentoring Process (dark accent section) ===== */
.mentoring-process {
    background: linear-gradient(160deg, #2d6078 0%, #346d85 30%, #3a7a92 60%, #2d6078 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.mentoring-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(95, 184, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-title-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.process-title-light strong {
    color: #ffffff !important;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

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

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

.step-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ===== Student Reviews ===== */
.student-reviews {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9f9 40%, #f2f4f3 100%);
    padding: 80px 20px;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 48px;
}

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid rgba(45, 96, 120, 0.06);
    box-shadow: 0 2px 14px rgba(45, 96, 120, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(45, 96, 120, 0.1);
}

.review-rating {
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a7a80;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #eef1f0;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5f2f0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a3d4e;
    margin-bottom: 2px;
}

.author-result {
    font-size: 13px;
    color: #5fb8b0;
    font-weight: 600;
}

/* ===== CTA Section ===== */
.cta-mentors {
    background: linear-gradient(180deg, #f5f6f6 0%, #eef0ef 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-mentors-container {
    max-width: 750px;
    margin: 0 auto;
}

.cta-mentors-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-mentors-subtitle {
    font-size: 16px;
    color: #6b8a8e;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-mentors-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.mentor-cta-btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.mentor-cta-btn.primary {
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
}

.mentor-cta-btn.primary:hover {
    background: linear-gradient(135deg, #245266, #2d6078);
    box-shadow: 0 6px 24px rgba(45, 96, 120, 0.3);
    transform: translateY(-2px);
}

.mentor-cta-btn.secondary {
    background: #ffffff;
    color: #2d6078;
    border: 2px solid rgba(45, 96, 120, 0.15);
}

.mentor-cta-btn.secondary:hover {
    border-color: #2d6078;
    box-shadow: 0 4px 16px rgba(45, 96, 120, 0.12);
    transform: translateY(-2px);
}

/* ===== Footer (matches planul-complet) ===== */
.site-footer {
    background: #1a3d4e;
    color: #c0d0d8;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px 32px;
    padding: 56px 32px 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    color: #8aa0aa;
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.footer-contact-link {
    color: #c0d0d8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #5fb8b0;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0d0d8;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(95, 184, 176, 0.2);
    color: #5fb8b0;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.footer-nav-link {
    color: #8aa0aa;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s ease;
    display: block;
}

.footer-nav-link:hover {
    color: #5fb8b0;
}

.anpc-badge {
    display: inline-block;
    margin-bottom: 10px;
    transition: opacity 0.2s ease;
}

.anpc-badge:hover {
    opacity: 0.8;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #c0d0d8;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8aa0aa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.report-btn:hover {
    color: #5fb8b0;
}

.report-icon {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #5a7a80;
}

.footer-bottom strong {
    color: #8899aa;
}

/* ===== Auth Modal ===== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 61, 78, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 44px 40px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(45, 96, 120, 0.08);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #8a9ba5;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: #f0f2f3;
    color: #1a3d4e;
}

.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
    animation: authFadeIn 0.3s ease;
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b8a8e;
    font-weight: 400;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field label {
    font-size: 13px;
    font-weight: 600;
    color: #2d6078;
    letter-spacing: 0.01em;
}

.auth-field input {
    padding: 12px 16px;
    border: 1.5px solid #dde4e7;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a3d4e;
    background: #f8fafb;
    transition: all 0.2s ease;
    outline: none;
}

.auth-field input::placeholder {
    color: #a0b3ba;
}

.auth-field input:focus {
    border-color: #2d6078;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 96, 120, 0.1);
}

.auth-btn {
    margin-top: 6px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #245266, #2d6078);
    box-shadow: 0 4px 16px rgba(45, 96, 120, 0.3);
    transform: translateY(-1px);
}

.auth-links {
    margin-top: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-switch-text {
    font-size: 14px;
    color: #6b8a8e;
}

.auth-switch-btn {
    background: none;
    border: none;
    color: #2d6078;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
    padding: 0;
}

.auth-switch-btn:hover {
    color: #5fb8b0;
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .mentors-hero-title {
        font-size: 36px;
    }

    .hero-stats-mentors {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-card {
        padding: 20px 28px;
    }

    .featured-grid .mentor-card {
        width: 100%;
        max-width: 440px;
    }

    .featured-grid {
        margin-top: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .process-step::after {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-mentors-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px 30px;
    }
}

@media (max-width: 600px) {
    .mentors-hero {
        padding: 110px 16px 60px;
    }

    .mentors-hero-title {
        font-size: 28px;
    }

    .mentors-hero-subtitle {
        font-size: 16px;
    }

    .hero-stats-mentors {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-stat-card {
        width: 100%;
        max-width: 280px;
    }

    .mentors-section-title {
        font-size: 26px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .mentor-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 30px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .auth-modal {
        max-width: 100%;
        margin: 12px;
        padding: 36px 24px 28px;
        border-radius: 16px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.mentor-card,
.team-member,
.process-step,
.review-card {
    opacity: 0;
    transform: translateY(24px);
}

.mentor-card.animate-in,
.team-member.animate-in,
.process-step.animate-in,
.review-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
