/* ===== TALENTEDGE WEBSITE CSS ===== */
/* Modern Enterprise Design with Microsoft Fluent Principles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #242424;
    background-color: #fff5f0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e1dfdd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo span {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0078d4;
    letter-spacing: -0.02em;
}

.nav-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #605e5c;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0078d4, #106ebe);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.tab-btn:hover {
    background-color: #f3f2f1;
    color: #323130;
    transform: translateY(-1px);
}

.tab-btn.active {
    background-color: #0078d4;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.tab-btn.active::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #323130;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #242424;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #106ebe);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #fff5f0 0%, #ffeee6 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 120, 212, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 110, 190, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #242424;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: #605e5c;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.4);
}

.btn-secondary {
    background: white;
    color: #0078d4;
    border: 2px solid #0078d4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #0078d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.3);
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.talent-flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flow-node {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    transition: transform 0.3s ease;
}

.flow-node:hover {
    transform: scale(1.05);
}

.flow-node i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.flow-arrow {
    color: #0078d4;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: #fff5f0;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #0078d4;
}

.problem-icon {
    background: linear-gradient(135deg, #d13438, #e81123);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(209, 52, 56, 0.3);
}

.problem-icon i {
    color: white;
    font-size: 2rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
}

.problem-card p {
    color: #605e5c;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-features {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 8px;
}

.feature-text p {
    color: #605e5c;
    line-height: 1.5;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #faf9f8, #f3f2f1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: white;
}

.benefit-metric {
    font-size: 3rem;
    font-weight: 800;
    color: #0078d4;
    margin-bottom: 16px;
    display: block;
}

.benefit-metric i {
    font-size: 2.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #605e5c;
    line-height: 1.6;
}

/* ===== TRACTION SECTION ===== */
.traction-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.traction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.traction-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.traction-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.traction-icon i {
    font-size: 1.5rem;
    color: white;
}

.traction-metric {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.traction-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.traction-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.traction-section .section-title {
    color: white;
}

.traction-section .section-title::after {
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.7));
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: #faf9f8;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.why-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    color: white;
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.why-card p {
    color: #605e5c;
    line-height: 1.6;
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.vision-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #0078d4;
    line-height: 1.5;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 40px;
}

.vision-quote::before,
.vision-quote::after {
    content: '"';
    font-size: 4rem;
    color: #0078d4;
    position: absolute;
    opacity: 0.3;
}

.vision-quote::before {
    top: -20px;
    left: 0;
}

.vision-quote::after {
    bottom: -60px;
    right: 0;
}

/* ===== ARCHITECTURE SECTION ===== */
.architecture-section {
    padding: 80px 0;
    background: white;
}

.architecture-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.lead {
    font-size: 1.25rem;
    color: #605e5c;
    line-height: 1.6;
}

.architecture-diagram {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, #faf9f8, #f3f2f1);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid #e1dfdd;
}

.agent-layer {
    margin-bottom: 40px;
}

.agent-layer:last-child {
    margin-bottom: 0;
}

.agent-layer h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 32px;
    position: relative;
}

.agent-layer h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #106ebe);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.agents-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    justify-items: center;
}

.agent-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
    width: 100%;
    max-width: 280px;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #0078d4;
}

.agent-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.agent-icon i {
    color: white;
    font-size: 1.5rem;
}

.agent-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.agent-card p {
    color: #605e5c;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #0078d4, #106ebe);
    border-radius: 1px;
}

.connector-arrow {
    color: #0078d4;
    font-size: 1.5rem;
    margin-top: -10px;
}

.architecture-details {
    margin-top: 4rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: #faf9f8;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.detail-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
}

.detail-card h3 i {
    color: #0078d4;
    font-size: 1.2rem;
}

.detail-card p {
    color: #605e5c;
    line-height: 1.6;
}

/* ===== SKILLS MANAGEMENT SECTION ===== */
.skills-section {
    padding: 80px 0;
    background: white;
}

.skills-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.skills-overview {
    margin-bottom: 5rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-card {
    background: linear-gradient(135deg, #faf9f8, #f3f2f1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.overview-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.overview-icon i {
    color: white;
    font-size: 2rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
}

.overview-card p {
    color: #605e5c;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0078d4;
    font-weight: 500;
}

.feature-highlight i {
    font-size: 0.875rem;
}

.skills-features {
    margin-bottom: 5rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #faf9f8;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.feature-card .feature-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.feature-card p {
    color: #605e5c;
    line-height: 1.6;
    font-size: 0.95rem;
}

.skills-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 4rem;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    background: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
    color: #0078d4;
    font-size: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #605e5c;
    line-height: 1.6;
}

/* ===== MENTORSHIP SECTION ===== */
.mentorship-section {
    padding: 80px 0;
    background: white;
}

.mentorship-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mentorship-process {
    margin-bottom: 5rem;
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #faf9f8, #f3f2f1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.step-number {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
}

.step-content p {
    color: #605e5c;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0078d4;
    font-weight: 500;
    font-size: 0.9rem;
}

.step-feature i {
    font-size: 0.75rem;
}

.mentorship-features {
    margin-bottom: 5rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: #faf9f8;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.platform-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.platform-icon i {
    color: white;
    font-size: 1.5rem;
}

.platform-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.platform-card p {
    color: #605e5c;
    line-height: 1.6;
}

.mentorship-benefits {
    margin-bottom: 5rem;
}

.triple-win {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.win-card {
    background: linear-gradient(135deg, #faf9f8, #f3f2f1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e1dfdd;
}

.win-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: white;
    border-color: #0078d4;
}

.win-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.win-icon i {
    color: white;
    font-size: 2rem;
}

.win-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
}

.win-card p {
    color: #605e5c;
    line-height: 1.6;
}

.success-stories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
}

.stories-title {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.story-quote {
    margin-bottom: 24px;
}

.story-quote i {
    color: #0078d4;
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.story-quote p {
    color: #605e5c;
    line-height: 1.6;
    font-style: italic;
    font-size: 1rem;
}

.story-author {
    border-top: 1px solid #e1dfdd;
    padding-top: 20px;
}

.author-info h5 {
    color: #242424;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: #605e5c;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.author-info .company {
    color: #0078d4;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-lead {
    font-size: 1.125rem;
    color: #605e5c;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(8px);
}

.contact-item i {
    font-size: 1.25rem;
    color: #0078d4;
    width: 24px;
    flex-shrink: 0;
}

.contact-item a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #106ebe;
}

.enterprise-note {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0078d4;
}

.enterprise-note h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.enterprise-note h4 i {
    color: #0078d4;
}

.enterprise-note p {
    color: #605e5c;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dfdd;
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #242424;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1dfdd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff5f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078d4;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: #242424;
    color: white;
    padding: 40px 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-left,
.footer-center {
    color: #a19f9d;
    font-size: 0.875rem;
}

.footer-center {
    text-align: center;
}

.footer-right {
    justify-self: end;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #a19f9d;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.social-links a:hover {
    color: #0078d4;
    background: rgba(0, 120, 212, 0.1);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-tabs {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border-top: 1px solid #e1dfdd;
    }

    .nav-tabs.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Architecture */
    .architecture-diagram {
        padding: 40px 24px;
    }

    .agents-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .footer-right {
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .tab-content {
        padding: 40px 0;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .problem-grid,
    .benefits-grid,
    .why-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    /* Skills and Mentorship responsive */
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .skills-benefits,
    .success-stories {
        padding: 40px 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
    min-height: 120px;
}

/* CareerSphere Specific Styles */
.platform-overview {
    margin: 3rem 0;
}

.overview-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.overview-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.warning-icon {
    color: #ffffff;
    font-size: 2.5rem;
}

.overview-banner p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.crisis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.dual-value {
    margin: 4rem 0;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #242424;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card.employee {
    border-color: #0078d4;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
}

.value-card.organization {
    border-color: #107c10;
    background: linear-gradient(135deg, #f3fff3 0%, #e8f5e8 100%);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card.employee .value-icon {
    color: #0078d4;
}

.value-card.organization .value-icon {
    color: #107c10;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #242424;
}

.value-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.value-card.employee h5 {
    color: #0078d4;
}

.value-card.organization h5 {
    color: #107c10;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.value-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1rem;
}

.value-card.employee ul li::before {
    color: #0078d4;
}

.value-card.organization ul li::before {
    color: #107c10;
}

.business-impact {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #242424;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.impact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 1rem;
}

.impact-metric {
    font-size: 3rem;
    font-weight: 800;
    color: #107c10;
    margin-bottom: 0.5rem;
    display: block;
}

.impact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #242424;
}

.career-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-width: 200px;
}

/* Responsive Design for CareerSphere */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .crisis-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    .overview-banner h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

/* VC Corner Specific Styles */
.vc-corner-section {
    padding: 2rem 0;
}

.vc-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    border-radius: 16px;
    color: white;
    margin-bottom: 4rem;
}

.vc-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vc-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vc-hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vc-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #0078d4;
}

.faq-card.funding {
    border-color: #107c10;
}

.faq-card.growth {
    border-color: #ff6b35;
}

.faq-card.support {
    border-color: #8764b8;
}

.faq-icon {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 1rem;
}

.faq-card.funding .faq-icon {
    color: #107c10;
}

.faq-card.growth .faq-icon {
    color: #ff6b35;
}

.faq-card.support .faq-icon {
    color: #8764b8;
}

.faq-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #242424;
}

.traction-list, .metrics-list, .support-list {
    margin-top: 1rem;
}

.traction-item, .metric-item, .support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.traction-item i, .metric-item i {
    color: #107c10;
    font-size: 1rem;
}

.support-item {
    align-items: flex-start;
}

.support-item i {
    color: #8764b8;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.support-item div h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #242424;
}

.support-item div p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.funding-breakdown {
    margin-top: 1.5rem;
}

.funding-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e1dfdd;
}

.funding-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.funding-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #107c10;
    min-width: 60px;
}

.funding-purpose h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #242424;
}

.funding-purpose p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.seed-roadmap {
    margin-top: 1rem;
}

.roadmap-target {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.roadmap-target h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.roadmap-milestones h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #242424;
}

.milestone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.milestone i {
    color: #ff6b35;
}

.value-dashboard-link {
    margin-top: 1.5rem;
}

.investment-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #107c10 0%, #0e6b0e 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.investment-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.investment-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Value Dashboard Specific Styles */
.value-dashboard-section {
    padding: 2rem 0;
}

.dashboard-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #8764b8 0%, #6b4e93 100%);
    border-radius: 16px;
    color: white;
    margin-bottom: 4rem;
}

.dashboard-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dashboard-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-metrics-preview {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metric-preview {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.metrics-section {
    margin: 4rem 0;
}

.metrics-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.metrics-icon {
    font-size: 3rem;
    color: #0078d4;
}

.financial-metrics .metrics-icon {
    color: #107c10;
}

.operational-metrics .metrics-icon {
    color: #ff6b35;
}

.skill-metrics .metrics-icon {
    color: #8764b8;
}

.metrics-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #242424;
}

.metrics-title p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0078d4;
}

.metrics-subtitle {
    font-size: 1rem;
    color: #666;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.metric-card.primary {
    border-color: #107c10;
}

.metric-card.secondary {
    border-color: #0078d4;
}

.metric-card.accent {
    border-color: #ff6b35;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-icon {
    font-size: 2rem;
    color: #0078d4;
}

.metric-card.primary .metric-icon {
    color: #107c10;
}

.metric-card.secondary .metric-icon {
    color: #0078d4;
}

.metric-card.accent .metric-icon {
    color: #ff6b35;
}

.metric-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #242424;
    margin: 0;
}

.metric-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #242424;
}

.metric-unit {
    font-size: 1rem;
    color: #666;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.metric-change.positive {
    color: #107c10;
    background: #e6f7e6;
}

.metric-details {
    border-top: 1px solid #e1dfdd;
    padding-top: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.detail-label {
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #242424;
}

/* Chart and Progress Bar Styles */
.metric-chart {
    margin-top: 1rem;
}

.chart-bar {
    margin-bottom: 0.5rem;
    position: relative;
}

.bar-segment {
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.bar-segment.baseline {
    background: #ff6b35;
}

.bar-segment.current {
    background: #107c10;
}

.metric-breakdown, .breakdown-item {
    margin-bottom: 0.75rem;
}

.breakdown-bar {
    width: 100%;
    height: 8px;
    background: #e1dfdd;
    border-radius: 4px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.breakdown-fill {
    height: 100%;
    background: #0078d4;
    transition: width 0.3s ease;
}

.breakdown-fill.external {
    background: #ff6b35;
}

/* ROI Summary */
.roi-summary {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.roi-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.roi-metrics {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.roi-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.roi-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Analytics Navigation Tabs */
.analytics-nav {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    justify-content: center;
    flex-wrap: wrap;
}

.analytics-tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #605e5c;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    min-width: 180px;
    justify-content: center;
}

.analytics-tab-btn:hover {
    background-color: #f3f2f1;
    color: #323130;
    transform: translateY(-2px);
}

.analytics-tab-btn.active {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
}

.analytics-tab-btn.active:hover {
    background: linear-gradient(135deg, #106ebe 0%, #005a9e 100%);
    color: white;
}

.analytics-section-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.analytics-section-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.analytics-benefits {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.analytics-benefits .benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #242424;
}

.analytics-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.analytics-benefits .benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.analytics-benefits .benefit-icon {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 1rem;
}

.analytics-benefits .benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #242424;
}

.analytics-benefits .benefit-item p {
    color: #605e5c;
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-metrics-preview {
        gap: 1rem;
    }
    
    .metrics-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
    }
    
    .vc-hero-title, .dashboard-hero-title {
        font-size: 2rem;
    }
    
    .funding-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .analytics-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .analytics-tab-btn {
        min-width: auto;
        width: 100%;
    }
    
    .analytics-benefits .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
