/* ========================================
   HOW WE DO PAGE STYLES
   ======================================== */

body.how-we-do-page {
    background: #f8fafc;
}

body.how-we-do-page .page-hero {
    background: #ffffff;
    border-radius: 0 0 32px 32px;
    padding-bottom: 3.5rem;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

body.how-we-do-page .methodology-card,
body.how-we-do-page .capability-card {
    transition: transform 0.25s ease;
    border-radius: 22px;
}

body.how-we-do-page .methodology-card:hover,
body.how-we-do-page .capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
}

body.how-we-do-page .cta-section {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.1);
}

/* Main Content Container */
.how-we-do-main {
    padding-top: 120px;
    padding-bottom: 4rem;
}

/* Section Styles */
.how-we-do-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.how-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Section Titles */
.how-we-do-title {
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    color: var(--text-dark, #0f172a);
    margin: 0 0 2.5rem 0;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
}

.how-we-do-title .highlight-text {
    color: var(--primary-green, #68b53c);
}

/* Content Styles */
.how-we-do-content {
    border-radius: 32px;
    padding: clamp(2.5rem, 4vw, 4rem);
}

.intro-text {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-dark, #0f172a);
    margin-bottom: 3rem;
    text-align: justify;
}

/* HOW WE DO IT Grid */
.how-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.how-we-do-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.30s ease;
    border: 1px solid #e2e8f0;
}

.how-we-do-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-green, #68b53c);
}

.how-we-do-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.how-we-do-item-header i {
    font-size: 1.5rem;
    color: var(--primary-green, #68b53c);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(104, 181, 60, 0.1);
    border-radius: 12px;
}

.how-we-do-item h3 {
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    color: var(--text-dark, #0f172a);
    margin: 0;
    font-weight: 600;
}

.how-we-do-item p {
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Implementation Framework Styles */
.implementation-phase {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.implementation-phase:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.phase-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-green, #68b53c), var(--accent-teal, #078f99));
    color: #ffffff;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-title {
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    color: var(--text-dark, #0f172a);
    margin: 0;
    font-weight: 600;
}

.phase-subtitle {
    font-size: 0.875em;
    color: #64748b;
    font-weight: 400;
}

.phase-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-dark, #0f172a);
    margin-bottom: 2rem;
    text-align: justify;
}

/* Phase Details */
.phase-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.phase-detail-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.detail-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    color: var(--text-dark, #0f172a);
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.detail-title i {
    color: var(--primary-green, #68b53c);
}

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

.detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: #64748b;
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green, #68b53c);
    font-weight: bold;
    font-size: 1.2em;
}

/* Phase Steps */
.phase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.phase-step {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phase-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-green, #68b53c);
}

.step-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    color: var(--text-dark, #0f172a);
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.step-title i {
    color: var(--primary-green, #68b53c);
    font-size: 1.25rem;
}

.step-description {
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.step-outcomes {
    margin-top: 1rem;
}

.step-outcomes strong {
    display: block;
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    color: var(--text-dark, #0f172a);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-outcomes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.6;
    color: #64748b;
}

.step-outcomes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green, #68b53c);
    font-weight: bold;
}

/* Post-Implementation Outcomes */
.phase-outcomes {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.outcomes-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    color: var(--text-dark, #0f172a);
    margin: 0 0 1.25rem 0;
    font-weight: 600;
}

.outcomes-title i {
    color: var(--primary-green, #68b53c);
    font-size: 1.25rem;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.outcomes-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: #64748b;
}

.outcomes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green, #68b53c);
    font-weight: bold;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-we-do-main {
        padding-top: 100px;
    }
    
    .how-we-do-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phase-details {
        grid-template-columns: 1fr;
    }
    
    .phase-steps {
        grid-template-columns: 1fr;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .phase-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .outcomes-list {
        grid-template-columns: 1fr;
    }
}

