* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Header & Navigation */
nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #3498db;
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    margin: 1rem auto;
    border-radius: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #5a6c7d;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

/* Content Cards */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input, textarea {
    padding: 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

/* Case Studies Section */
.case-studies-section {
    max-width: 1200px;
    margin: 0 auto;
}

.cs-header h1 {
    margin: 0 0 1rem;
    color: #2c3e50;
    text-align: center;
}

.cs-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cs-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.cs-chip {
    background: #ffffff;
    color: #2c3e50;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cs-chip:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.cs-chip--active {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cs-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    width: max-content;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: #2c3e50;
    line-height: 1.3;
}

.cs-client {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

.cs-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cs-block {
    margin-top: 1.5rem;
    border-top: 2px dashed #e9ecef;
    padding-top: 1rem;
}

.cs-block h4 {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: #7f8c8d;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.cs-block p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #34495e;
}

.cs-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.cs-kpi {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.cs-kpi-label {
    font-size: 0.7rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cs-kpi-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.cs-note {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    font-style: italic;
}

.cs-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cs-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cs-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cs-link:hover {
    color: #2980b9;
}

.cs-loading {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero, .content-card, .form-container {
        margin: 1rem 0;
        padding: 2rem;
    }
    
    .cs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cs-filters {
        justify-content: center;
    }
    
    .cs-chip {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cs-impact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Enhanced Process Page Styles */

/* CTA Buttons */
.cta-buttons-hero, .cta-buttons-final {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.cta-button.secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Methodology Overview Section */
.methodology-overview {
    background: white;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.methodology-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.methodology-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.pillar-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: white;
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pillar-card > p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.pillar-features li {
    font-size: 0.9rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    text-align: left;
}

.pillar-features li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Timeline Section */
.timeline-section {
    margin: 4rem 0;
}

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

.timeline-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.phase-group {
    margin: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.phase-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    text-align: center;
}

.phase-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.phase-header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.phase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0;
}

.workflow-step {
    background: white;
    padding: 2.5rem;
    border-right: 1px solid #e9ecef;
    transition: background 0.3s ease;
    position: relative;
}

.workflow-step:last-child {
    border-right: none;
}

.workflow-step:hover {
    background: #f8f9fa;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.workflow-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-description {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.step-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.activity {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.step-deliverable, .step-timeline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.step-deliverable {
    color: #27ae60;
}

.step-timeline {
    color: #e67e22;
}

/* Proof Section */
.proof-section {
    background: white;
    margin: 4rem 0;
    padding: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.proof-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.proof-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 100%;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.metric-context {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.case-studies-preview h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

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

.case-preview-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.case-badge {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.case-preview-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1rem 0 0.5rem;
}

.case-preview-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    text-align: left;
}

.case-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.case-metric {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.case-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.case-link:hover {
    color: #2980b9;
}

.case-studies-preview {
    margin-top: 3rem;
}

.case-studies-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Engagement Models Section */
.engagement-models {
    margin: 4rem 0;
}

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

.engagement-models h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.engagement-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.engagement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.engagement-card.recommended {
    border-color: #3498db;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.engagement-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.engagement-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.engagement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.engagement-duration {
    text-align: center;
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.engagement-price {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.engagement-description p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.engagement-includes h4, .engagement-ideal h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.engagement-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.engagement-includes li {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.engagement-includes li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.engagement-ideal p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: left;
}

.engagement-cta {
    text-align: center;
}

.engagement-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.engagement-note p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.95rem;
    text-align: center;
}

.engagement-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.engagement-note a:hover {
    color: #2980b9;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin: 4rem 0;
    padding: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.contact-options {
    margin-top: 2rem;
}

.contact-options p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: white;
}

.contact-options a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-options a:hover {
    color: #5dade2;
}

/* Responsive Design Updates for Process Page */
@media (min-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .methodology-overview, .proof-section, .final-cta-section {
        margin: 1.5rem 0;
        padding: 2.5rem 0;
    }
    
    .methodology-container, .timeline-container, .proof-container, .engagement-container, .final-cta-container {
        padding: 0 1rem;
    }
    
    .methodology-overview h2, .timeline-section h2, .proof-section h2, .engagement-models h2, .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .pillars-grid, .metrics-grid, .case-studies-grid, .engagement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phase-steps {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 2rem;
    }
    
    .workflow-step:last-child {
        border-bottom: none;
    }
    
    .cta-buttons-hero, .cta-buttons-final {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button.primary, .cta-button.secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .step-activities {
        justify-content: center;
    }
    
    .case-metrics {
        justify-content: center;
    }
    
    .engagement-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}