/* =====================================================
   IKIGAI 2.0 - For Teams Page Styles
   ===================================================== */

/* Teams Hero */
.teams-hero {
    padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
    text-align: center;
    background: var(--bg-primary);
    position: relative;
}

.teams-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, var(--petal-purple) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, var(--petal-green) 0%, transparent 50%);
    opacity: 0.15;
    filter: blur(80px);
}

.teams-hero .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.teams-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.teams-hero .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.hero-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-left: 4px solid var(--golden);
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--golden-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.stat-card .stat-source {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Packages Section */
.packages-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    border: 2px solid var(--golden);
    box-shadow: var(--shadow-md);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--golden);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.package-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
}

.package-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.package-qty {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.package-price {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-card .btn {
    width: 100%;
}

/* Workshop Section */
.workshop-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.workshop-text .lead {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.workshop-outcomes h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.workshop-outcomes ul {
    list-style: none;
}

.workshop-outcomes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.workshop-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.workshop-agenda {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.workshop-agenda h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.agenda-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agenda-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.agenda-time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--golden-dark);
    min-width: 70px;
}

.agenda-topic {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* Author Section */
.author-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.author-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.author-section .author-avatar {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--petal-yellow) 0%, var(--petal-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.author-section .avatar-initials {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: white;
}

.author-text h2 {
    margin-bottom: 1rem;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-credentials span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Teams CTA */
.teams-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--petal-yellow) 0%, var(--golden) 100%);
    border-radius: var(--radius-xl);
    color: white;
}

.cta-card h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.cta-card .btn {
    background: white;
    color: var(--golden-dark);
}

.cta-card .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {

    .workshop-content,
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .workshop-outcomes ul {
        text-align: left;
    }

    .author-credentials {
        justify-content: center;
    }

    .cta-card {
        padding: 2rem;
    }
}