/* Methodology Page Styles */

.methodology-main {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    padding-top: 80px;
}

/* Hero Section */
.methodology-hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Book Info Section */
.book-info-section {
    padding: 4rem 0;
}

.book-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.book-cover {
    position: relative;
    width: 100%;
}

.book-cover-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
    border: 3px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.book-cover-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
    border-color: rgba(99, 102, 241, 0.6);
}

.book-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.book-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.meta-value {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Framework Section */
.framework-section {
    padding: 4rem 0;
    background: rgba(99, 102, 241, 0.05);
}

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

.framework-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    text-align: center;
}

.framework-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.framework-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.framework-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.framework-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Implementation Section */
.implementation-section {
    padding: 4rem 0;
}

.implementation-content {
    max-width: 800px;
    margin: 0 auto;
}

.implementation-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.card-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.implementation-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.implementation-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid #6366f1;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Cases Section */
.cases-section {
    padding: 4rem 0;
    background: rgba(99, 102, 241, 0.05);
}

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

.case-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.6);
}

.case-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Structure Section */
.structure-section {
    padding: 4rem 0;
}

.chapters-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.chapter-item:hover {
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateX(10px);
}

.chapter-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.chapter-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Audience Section */
.audience-section {
    padding: 4rem 0;
    background: rgba(99, 102, 241, 0.05);
}

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

.audience-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.audience-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Accolades Section */
.accolades-section {
    padding: 4rem 0;
}

.accolades-content {
    max-width: 800px;
    margin: 0 auto;
}

.accolade-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.accolade-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.accolade-item p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .book-card {
        grid-template-columns: 1fr;
    }

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

    .framework-grid,
    .cases-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

