/* Our Method Page Styles */

/* Method Intro Section */
.method-intro {
    padding: 60px 0;
    background: #f8fafc;
}

/* Process Flow Section */
.process-flow {
    padding: 80px 0;
}

.process-flow h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

/* Process Table Styles */
.process-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    padding: 1rem;
}

.process-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Ensures table doesn't squish too much on mobile */
}

.process-table th {
    background: #f8fafc;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e5e5;
}

.process-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
    color: #4a4a4a;
    line-height: 1.6;
}

.process-table tr:last-child td {
    border-bottom: none;
}

.process-table tr:hover td {
    background: #fdfdfd;
}

.step-badge {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto;
}

.step-cell {
    text-align: center;
    width: 80px;
}

.focus-cell {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.table-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #64748b;
}

.table-list li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.table-list li:last-child {
    margin-bottom: 0;
}

/* Method Principles Section */
.method-principles {
    padding: 80px 0;
    background: #f8fafc;
}

.method-principles h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.principle-icon span {
    font-size: 2rem;
}

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

.principle-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Tools & Technology Section */
.tools-technology {
    padding: 80px 0;
}

.tools-technology h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.tools-technology>p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tech-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Engagement Model Section */
.engagement-model {
    padding: 80px 0;
    background: #f8fafc;
}

.engagement-model h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.engagement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
}

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

.engagement-card>p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.engagement-card ul {
    list-style: none;
}

.engagement-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.engagement-card li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Our Method Page */
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .engagement-cards {
        grid-template-columns: 1fr;
    }

    .process-flow h2,
    .method-principles h2,
    .tools-technology h2,
    .engagement-model h2 {
        font-size: 2rem;
    }

    .process-table-container {
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .process-table {
        min-width: 100%;
        display: block;
        /* Force block display to break logic if needed, but keeping table logic */
    }

    /* Mobile Table: convert to cards if table is too wide, or just rely on scroll */
    /* Since user asked for tabular form, horizontal scroll is acceptable or stacking */
}