/* Technical Training Styles */
.certification-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.track-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.track-item.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.track-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.track-header h4 {
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.track-level {
    margin-left: 1rem;
}

.level-badge.professional {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.level-badge.expert {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.level-badge.intermediate {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.level-badge.advanced {
    background: linear-gradient(135deg, #7c2d12 0%, #92400e 100%);
    color: white;
}

.module-list {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

.module-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.module-item:last-child {
    margin-bottom: 0;
}

.module-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.module-details {
    flex: 1;
}

.module-details strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.module-details p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}

.module-duration {
    background: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.outcome-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.track-pricing .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.program-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.program-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.topic {
    background: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.program-price {
    font-weight: 600;
    color: #3b82f6;
    margin-top: 1rem;
}

/* Certification Prep */
.cert-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cert-logo {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.cert-paths {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.cert-path {
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
}

.cert-pricing {
    font-weight: 600;
    color: #059669;
    margin-left: 1rem;
}

/* Assessment Framework */
.assessment-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.assessment-type {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.process-step .step-number {
    background: #3b82f6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.acceleration-tracks {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.accel-track {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.track-timeline {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.track-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.focus-area {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Competency Framework */
.competency-framework {
    margin-top: 3rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.competency-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
}

.skill-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.skill-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.level-indicator {
    display: flex;
    gap: 0.25rem;
}

.level {
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.level.beginner {
    background: #fef3c7;
    color: #92400e;
}

.level.intermediate {
    background: #dbeafe;
    color: #1d4ed8;
}

.level.advanced {
    background: #dcfce7;
    color: #166534;
}

.level.expert {
    background: #fee2e2;
    color: #dc2626;
}

/* Corporate Packages */
.corporate-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-tier {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-tier.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.package-tier:hover {
    transform: translateY(-2px);
}

.package-tier.featured:hover {
    transform: scale(1.05) translateY(-2px);
}

.package-price {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.ideal-for {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* Training Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Training Modalities */
.training-modalities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modality-type {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #4b5563;
}

/* Upcoming Sessions */
.sessions-calendar {
    margin-top: 1.5rem;
}

.session-item {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.session-date {
    text-align: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.session-date .month {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px 4px 0 0;
    font-size: 0.7rem;
    font-weight: 600;
}

.session-date .day {
    background: #f8fafc;
    border: 1px solid #3b82f6;
    border-top: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0 0 4px 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.session-info {
    flex: 1;
}

.session-action {
    margin-left: 1rem;
}