/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
}

.profile-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.profile-company {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-tagline {
    font-size: 1.1rem;
    color: #515154;
    line-height: 1.6;
}

/* Strengths Section */
.strengths-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1d1d1f;
}

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

.strength-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.strength-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.strength-card p {
    color: #515154;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 89px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #0066cc;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #0066cc;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0066cc;
    text-align: right;
    padding-right: 2rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.timeline-company {
    color: #86868b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    color: #515154;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certification-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.certification-item:hover {
    border-color: #0066cc;
    transform: translateY(-3px);
}

.cert-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.certification-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: #86868b;
    font-size: 0.9rem;
}

/* Work Process Section */
.work-process-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: center;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.flow-number {
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.8rem;
}

.flow-step p {
    color: #515154;
    line-height: 1.5;
    font-size: 0.95rem;
}

.duration {
    color: #86868b;
    font-size: 0.85rem;
}

.flow-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: bold;
}

/* Pricing Plans Section */
.pricing-plans-section {
    padding: 80px 0;
    background: white;
}

.plans-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-plan {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0066cc;
}

.featured-plan .plan-price {
    color: white;
}

.plan-item > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.featured-plan .plan-features li::before {
    color: white;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    color: #86868b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

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

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 9px;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .plans-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-plan {
        transform: none;
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 100px 0 60px;
    }

    .strength-card {
        padding: 1.5rem;
    }

    .plan-item {
        padding: 1.5rem;
    }

    .flow-step {
        padding: 1.5rem;
    }
}