/* Shared Page Styles */

.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-mesh);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-section {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--pink);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Entities Section */
.entities-section {
    padding: var(--section-padding) 0;
    background: var(--purple-light);
}

.section-title.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.entity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.entity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.entity-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.entity-card.featured h3,
.entity-card.featured p {
    color: var(--white);
}

.entity-card.featured .entity-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.entity-logo {
    width: 64px;
    height: 64px;
    background: var(--purple-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.entity-card.featured .entity-logo {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.entity-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.entity-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.entity-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--purple-light);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1rem;
}

.entity-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--pink);
}

.cta-content .btn-primary:hover {
    background: var(--purple-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* Book Section */
.book-section {
    padding: var(--section-padding) 0;
}

.book-feature {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.book-image {
    position: relative;
}

.book-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.book-badge {
    position: absolute;
    top: 1.5rem;
    right: -1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
}

.book-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.book-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.book-content > p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.book-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.book-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 600;
}

/* Topics Section */
.topics-section {
    padding: var(--section-padding) 0;
    background: var(--purple-light);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--pink);
}

.topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.topic-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    padding: var(--section-padding) 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--pink);
}

.program-icon svg {
    width: 100%;
    height: 100%;
}

.program-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Ventures Full Page */
.ecosystem-section {
    padding: var(--section-padding) 0;
}

.venture-category-full {
    margin-bottom: 4rem;
}

.category-header {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--purple-light);
}

.ventures-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venture-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.venture-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.venture-item.featured {
    background: var(--gradient-primary);
}

.venture-item.featured .venture-details h3,
.venture-item.featured .venture-details p {
    color: var(--white);
}

.venture-item.featured .venture-arrow {
    color: var(--white);
}

.venture-item.featured .venture-logo-text {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.venture-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.venture-logo-text {
    width: 56px;
    height: 56px;
    background: var(--purple-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--pink);
    flex-shrink: 0;
}

.venture-details {
    flex: 1;
}

.venture-details h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.venture-details p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.venture-tag {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--pink);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.venture-arrow {
    font-size: 1.5rem;
    color: var(--pink);
    transition: transform 0.3s ease;
}

.venture-item:hover .venture-arrow {
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .entities-grid {
        grid-template-columns: 1fr;
    }

    .book-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .book-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .book-content h2 {
        font-size: 2rem;
    }
}
