/* Professional Team Structure Page - Enterprise Design */

/* Professional Background */
.team-professional-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2842 50%, #0f1b2e 100%);
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
}

/* Container */
.container-professional {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.team-hero-professional {
    padding: 160px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-wrapper-professional {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-professional {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge-professional i {
    color: var(--water-cyan);
}

.hero-title-professional {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight-professional {
    background: linear-gradient(135deg, var(--water-cyan) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-professional {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Executive Summary */
.executive-summary {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.summary-card-professional {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.summary-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.summary-card-professional:hover::before {
    transform: scaleX(1);
}

.summary-card-professional:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.summary-card-professional.highlight-card {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
}

.summary-icon-wrapper {
    margin-bottom: 24px;
}

.summary-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
}

.summary-content {
    text-align: left;
}

.summary-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.summary-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Teams Organization Section */
.teams-organization-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-wrapper {
    margin-bottom: 80px;
}

.section-header-professional {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    flex: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.confirmed-badge-professional {
    background: rgba(0, 191, 255, 0.15);
    color: var(--water-cyan);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.pending-badge-professional {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.section-title-professional {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.section-indicator {
    text-align: right;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-indicator.urgent-indicator {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.indicator-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.indicator-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Teams Grid */
.teams-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* Team Card Professional */
.team-card-professional {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.team-card-professional:nth-child(1) { animation-delay: 0.1s; }
.team-card-professional:nth-child(2) { animation-delay: 0.2s; }
.team-card-professional:nth-child(3) { animation-delay: 0.3s; }
.team-card-professional:nth-child(4) { animation-delay: 0.4s; }
.team-card-professional:nth-child(5) { animation-delay: 0.5s; }
.team-card-professional:nth-child(6) { animation-delay: 0.6s; }
.team-card-professional:nth-child(7) { animation-delay: 0.7s; }
.team-card-professional:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.team-card-professional:hover::before {
    transform: scaleY(1);
}

.team-card-professional:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.pending-card::before {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.pending-card:hover {
    box-shadow: 0 16px 48px rgba(255, 165, 0, 0.2);
}

/* Card Header */
.card-header-professional {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-category {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.backend-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.frontend-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.fullstack-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.ai-icon { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.android-icon { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.design-icon { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.ios-icon { background: linear-gradient(135deg, #a8caba 0%, #5d4e75 100%); }
.social-icon { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.finance-icon { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

.category-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.category-status {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    font-weight: 500;
}

.category-status.confirmed {
    background: rgba(0, 191, 255, 0.15);
    color: var(--water-cyan);
}

.category-status.pending {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
}

.team-status-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.team-status-badge.success {
    background: rgba(0, 191, 255, 0.2);
    color: var(--water-cyan);
    border: 2px solid var(--water-cyan);
}

.team-status-badge.warning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 2px solid #ffa500;
}

/* Card Body */
.card-body-professional {
    padding: 24px;
}

.leader-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 20px;
}

.leader-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--water-cyan);
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.leader-avatar.empty {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.3);
}

.leader-details {
    flex: 1;
}

.leader-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.leader-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.leader-name.empty-name {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.team-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 191, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--water-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Card Footer */
.card-footer-professional {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.recruitment-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 191, 255, 0.15);
    color: var(--water-cyan);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.recruitment-tag.urgent {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Open Positions Section */
.open-positions-section {
    margin-top: 80px;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.position-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.position-card:nth-child(1) { animation-delay: 0.1s; }
.position-card:nth-child(2) { animation-delay: 0.2s; }
.position-card:nth-child(3) { animation-delay: 0.3s; }
.position-card:nth-child(4) { animation-delay: 0.4s; }
.position-card:nth-child(5) { animation-delay: 0.5s; }
.position-card:nth-child(6) { animation-delay: 0.6s; }
.position-card:nth-child(7) { animation-delay: 0.7s; }
.position-card:nth-child(8) { animation-delay: 0.8s; }
.position-card:nth-child(9) { animation-delay: 0.9s; }
.position-card:nth-child(10) { animation-delay: 1.0s; }
.position-card:nth-child(11) { animation-delay: 1.1s; }

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.position-card:hover::before {
    transform: scaleY(1);
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.position-icon-wrapper {
    flex: 1;
}

.position-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.position-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    min-width: 70px;
}

.position-badge.urgent-badge {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 165, 0, 0);
    }
}

.position-card.pending-leader::before {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.badge-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--water-cyan);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.position-body {
    padding: 24px;
}

.position-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.position-team,
.position-leader {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.position-team i,
.position-leader i {
    color: var(--water-cyan);
    font-size: 0.9rem;
}

.position-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.requirement-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.position-footer {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.apply-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.4);
    border-color: var(--water-cyan);
}

.apply-button i {
    transition: transform 0.3s;
}

.apply-button:hover i {
    transform: translateX(4px);
}

.apply-button.urgent-button {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    animation: pulse-button 2s infinite;
}

.apply-button.urgent-button:hover {
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.4);
    border-color: #ffa500;
}

@keyframes pulse-button {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.recruitment-badge-professional {
    background: rgba(0, 191, 255, 0.15);
    color: var(--water-cyan);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

/* Recruitment Summary */
.recruitment-summary-professional {
    margin-top: 80px;
    padding: 0;
}

.summary-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.summary-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.summary-header-professional {
    margin-bottom: 32px;
}

.summary-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-header-content i {
    font-size: 1.5rem;
    color: var(--water-cyan);
}

.summary-header-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.summary-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.data-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.data-value.highlight-value {
    font-size: 3rem;
}

.data-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.data-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s ease-out;
}

.data-bar-fill.highlight-bar {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.summary-cta-professional {
    text-align: center;
}

.cta-button-professional {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 191, 255, 0.4);
    border-color: var(--water-cyan);
}

.cta-button-professional i {
    transition: transform 0.3s;
}

.cta-button-professional:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-professional {
        padding: 0 20px;
    }
    
    .teams-grid-professional {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .positions-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .container-professional {
        padding: 0 1.5rem;
    }
    
    .hero-title-professional {
        font-size: 3.5rem;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .teams-grid-professional {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .positions-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title-professional {
        font-size: 3rem;
    }

    .hero-subtitle-professional {
        font-size: 1.1rem;
    }

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

    .section-header-professional {
        flex-direction: column;
        gap: 20px;
    }

    .section-indicator {
        width: 100%;
        text-align: center;
    }

    .teams-grid-professional {
        grid-template-columns: 1fr;
    }

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

    .summary-data-grid {
        grid-template-columns: 1fr;
    }

    /* Fix contact button positioning on mobile */
    .recruitment-summary-professional {
        margin-top: 60px;
        padding: 0;
        position: relative;
    }

    .summary-cta-professional {
        position: relative;
        margin-top: 24px;
        z-index: 1;
    }

    .cta-button-professional {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container-professional {
        padding: 0 0.75rem;
    }
    
    .team-hero-professional {
        padding: 90px 0 40px;
    }

    .hero-title-professional {
        font-size: 2rem;
    }
    
    .hero-subtitle-professional {
        font-size: 0.95rem;
    }
    
    .hero-badge-professional {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-card-professional {
        padding: 1.25rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .summary-number {
        font-size: 2rem;
    }
    
    .summary-label {
        font-size: 0.9rem;
    }

    .summary-wrapper {
        padding: 20px;
    }
    
    .summary-header-content h3 {
        font-size: 1.5rem;
    }
    
    .data-item {
        padding: 16px;
    }
    
    .data-value {
        font-size: 1.75rem;
    }
    
    .data-value.highlight-value {
        font-size: 2rem;
    }

    /* Ensure contact button doesn't appear at top on small mobile */
    .recruitment-summary-professional {
        margin-top: 40px;
        position: relative;
        z-index: 1;
    }

    .summary-cta-professional {
        position: relative;
        margin-top: 20px;
        padding-top: 0;
    }

    .cta-button-professional {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .card-header-professional,
    .card-body-professional,
    .card-footer-professional {
        padding: 1rem;
    }
    
    .section-title-professional {
        font-size: 1.5rem;
    }
    
    .team-name-professional {
        font-size: 1.5rem;
    }
    
    .leader-name {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .position-title {
        font-size: 1.1rem;
    }
    
    .position-requirements {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .requirement-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* ===== CRITICAL RESPONSIVE FIXES - Prevent Crashes ===== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    .team-hero-professional,
    .executive-summary,
    .teams-organization-section,
    .teams-grid-professional,
    .positions-grid,
    .summary-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Ensure all cards don't overflow */
    .team-card-professional,
    .position-card,
    .summary-card-professional,
    .data-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    /* Fix grid layouts */
    .teams-grid-professional {
        grid-template-columns: 1fr !important;
    }
    
    .positions-grid {
        grid-template-columns: 1fr !important;
    }
    
    .summary-grid {
        grid-template-columns: 1fr !important;
    }
    
    .summary-data-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    /* Additional mobile fixes */
    .team-hero-professional,
    .executive-summary,
    .teams-organization-section,
    .open-positions-section,
    .team-members-section,
    .recruitment-summary-professional {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* Team Members Section */
.team-members-section {
    margin-top: 4rem;
}

.members-badge-professional {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 102, 204, 0.15) 100%);
    border-color: rgba(0, 191, 255, 0.3);
    color: var(--water-cyan);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 204, 255, 0.35);
}

.member-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-photo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    overflow: hidden;
}

.member-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
}

.leader-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
    z-index: 2;
}

.leader-badge i {
    color: #fff;
    font-size: 1.1rem;
}

.member-position-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 17, 34, 0.9);
    border: 2px solid var(--water-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.member-position-icon i {
    color: var(--water-cyan);
    font-size: 1.3rem;
}

.member-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.member-position {
    font-size: 1rem;
    color: var(--water-cyan);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.member-team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.member-team i {
    color: var(--water-cyan);
    font-size: 0.85rem;
}

.member-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--water-cyan);
    font-weight: 500;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: rgba(0, 191, 255, 0.25);
    border-color: rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.skill-tag i {
    font-size: 0.75rem;
}

/* Responsive Design for Member Cards */
@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .member-info {
        padding: 1.25rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-photo-wrapper {
        padding-top: 90%;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .member-info {
        padding: 1rem;
    }
}

/* Founder Card Styling - Professional Design */
.founder-card {
    border: 1px solid rgba(102, 204, 255, 0.3);
    background: linear-gradient(135deg, rgba(102, 204, 255, 0.08) 0%, rgba(0, 102, 204, 0.12) 100%);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(102, 204, 255, 0.8) 0%, 
        rgba(0, 191, 255, 0.8) 50%, 
        rgba(102, 204, 255, 0.8) 100%);
    z-index: 1;
}

.founder-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(102, 204, 255, 0.6) 0%, 
        rgba(0, 191, 255, 0.6) 100%);
    z-index: 1;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 204, 255, 0.5);
}

.founder-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(102, 204, 255, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
    border: 2px solid rgba(102, 204, 255, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.founder-badge:hover {
    transform: scale(1.05);
    border-color: rgba(102, 204, 255, 0.9);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.founder-badge i {
    color: var(--water-cyan);
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(102, 204, 255, 0.5);
}

.founder-position {
    color: var(--water-cyan) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.founder-position::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 204, 255, 0.6) 0%, 
        rgba(0, 191, 255, 0.6) 100%);
    border-radius: 2px;
}