/* Hero Section */
.hero-wrap {
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Leadership Section */
.leadership-section {
    padding: 10px 0 100px 0;
    background: white;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.leadership-container {
    max-width: 1000px;
    margin: 0 auto;
}

.leader-spotlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-spotlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.leader-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #5423c6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

.leader-image:hover img {
    transform: scale(1.05);
}

.leader-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #5423c6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    border-radius: 50%;
}

.leader-details {
    color: var(--text-primary);
}

.leader-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.leader-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-bio {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.leader-expertise {
    margin-bottom: 32px;
}

.leader-expertise h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background: linear-gradient(135deg, #667eea, #5423c6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.expertise-tag:hover {
    transform: translateY(-2px);
}

.leader-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #5423c6);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #5423c6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.value-icon i {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.vision-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.vision-text p:last-of-type {
    margin-bottom: 40px;
}

.vision-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Vision Diagram */
.vision-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.diagram-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.main-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    line-height: 1.3;
}

.satellite {
    width: 70px;
    height: 70px;
    background: white;
    color: var(--text-primary);
    border: 2px solid #e5e7eb;
    box-shadow: var(--shadow-md);
}

.satellite i {
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
    color: #667eea;
    stroke-width: 2;
}

.satellite span {
    font-size: 0.7rem;
    line-height: 1.2;
}

.growth {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4s ease-in-out infinite;
}

.innovation {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite 0.5s;
}

.excellence {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4s ease-in-out infinite 1s;
}

.partnership {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.innovation {
    animation-name: float-right;
}

@keyframes float-right {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-58%) translateX(0);
    }
}

.partnership {
    animation-name: float-left;
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-58%) translateX(0);
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.cta-btn.primary {
    background: white;
    color: #5423c6;
    border-color: white;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #5423c6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .leader-spotlight {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-stats {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

    .leader-bio {
        font-size: 0.9rem;
    }

    .leader-spotlight {
        padding: 40px 32px;
    }

    .leader-name {
        font-size: 2rem;
    }

    .leader-image {
        width: 200px;
        height: 200px;
    }

    .vision-text h2 {
        font-size: 1.5rem;
    }

    .vision-text p {
        font-size: 0.9rem;
    }

    .vision-stats {
        flex-direction: column;
        gap: 20px;
    }

    .vision-diagram {
        width: 250px;
        height: 250px;
    }

    .main-circle {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }

    .satellite {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 16px;
    }

    .leader-spotlight {
        padding: 32px 24px;
    }

    .leader-name {
        font-size: 1.75rem;
    }

    .leader-image {
        width: 180px;
        height: 180px;
    }

    .expertise-tags {
        justify-content: center;
    }

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

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

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