/* Local AI Specific Styles */

/* Hero Section */
.hero-local-ai {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-local-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-local-ai .container {
    position: relative;
    z-index: 1;
}

.hero-local-ai h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-local-ai .subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    background: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Why Local */
.why-local {
    padding: 100px 0;
    background: #f8f9fa;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.challenge-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left: 6px solid #e74c3c;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.problem {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.solution {
    color: #27ae60;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.impact {
    background: #e8f5e8;
    color: #27ae60;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    border-left: 4px solid #27ae60;
}

/* Architecture */
.architecture {
    padding: 100px 0;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.component-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 6px solid #3498db;
    transition: transform 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
}

.component-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.install-cmd {
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    margin: 1.5rem 0;
    position: relative;
    overflow-x: auto;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.features-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.8rem;
}

/* Model Selection */
.model-selection {
    padding: 100px 0;
    background: #f8f9fa;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

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

.model-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: #3498db;
    transform: translateY(-3px);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.model-header h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.memory-req {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.best-for {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.performance {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quantized-info {
    background: #e8f5e8;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.quantized-label {
    font-weight: 600;
    color: #27ae60;
}

/* Security */
.security {
    padding: 100px 0;
}

.security-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left: 6px solid #e74c3c;
}

.principle-card h3 {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-card h3::before {
    content: '🔒';
    font-size: 1.5rem;
}

.implementation {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.verification {
    background: #f0f7ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    color: #2c3e50;
}

.compliance-section {
    margin-top: 5rem;
}

.compliance-section h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.compliance-tab {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.compliance-tab h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.compliance-tab ul {
    list-style: none;
    padding: 0;
}

.compliance-tab li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: #555;
    line-height: 1.5;
}

.compliance-tab li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Setup Guide */
.setup-guide {
    padding: 100px 0;
    background: #f8f9fa;
}

.phases-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.phases-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3498db;
}

.phase-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.phase-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    width: 24px;
    height: 24px;
    background: #3498db;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #3498db;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.phase-header h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin: 0;
}

.duration {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.steps-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.step-item {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.code-block {
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
}

/* Testing Pipeline */
.testing-pipeline {
    padding: 100px 0;
}

.testing-levels {
    margin: 4rem 0;
}

.testing-level {
    background: white;
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.testing-level h3 {
    background: #3498db;
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
}

.testing-level .level-description {
    padding: 1.5rem 2rem 0;
    color: #666;
    font-size: 1.1rem;
}

.tools-list {
    padding: 0 2rem 1.5rem;
    color: #555;
}

.tools-list code {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #2c3e50;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.example-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.example-card h4 {
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.validates {
    background: #e8f5e8;
    color: #27ae60;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.code-example {
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.ci-cd-section {
    margin-top: 5rem;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

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

.stage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

.stage-card h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.stage-card ul {
    list-style: none;
    padding: 0;
}

.stage-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.stage-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Cost Analysis */
.cost-analysis {
    padding: 100px 0;
    background: #f8f9fa;
}

.cost-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.scenario-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
}

.scenario-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3498db;
}

.cost-comparison {
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.cost-item.breakeven {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
}

.label {
    color: #666;
}

.value {
    color: #2c3e50;
    font-weight: 600;
}

.recommendation {
    background: #fff9c4;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    font-style: italic;
}

.hidden-benefits {
    margin-top: 5rem;
}

.hidden-benefits h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #27ae60;
    font-weight: 600;
    color: #2c3e50;
}

/* Real Examples */
.real-examples {
    padding: 100px 0;
}

.examples-showcase {
    margin: 4rem 0;
}

.example-showcase {
    background: white;
    margin-bottom: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.example-showcase h3 {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    margin: 0;
    font-size: 1.6rem;
}

.model-info {
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
}

.model-info code {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.example-description {
    padding: 2rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.setup-details {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.setup-details h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.setup-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.setup-label {
    font-weight: 600;
    color: #666;
}

.integration-flow {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.integration-flow h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.flow-diagram {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    color: #2c3e50;
    border-left: 4px solid #3498db;
}

.roi-highlight {
    padding: 2rem;
    background: #e8f5e8;
    color: #27ae60;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Troubleshooting */
.troubleshooting {
    padding: 100px 0;
    background: #f8f9fa;
}

.issues-list {
    margin: 4rem 0;
}

.issue-card {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left: 6px solid #e74c3c;
}

.issue-title {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.issue-title::before {
    content: '⚠️';
    font-size: 1.5rem;
}

.symptoms {
    background: #ffe6e6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #e74c3c;
}

.solutions {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #27ae60;
}

.prevention {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* CTA Section */
.cta-local-ai {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-local-ai h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-package {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.service-package:hover {
    transform: translateY(-8px);
}

.service-package h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-description {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.duration, .investment {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.deliverables h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.deliverables ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.deliverables li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.9;
}

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

.cta-action {
    margin-top: 4rem;
}

.btn-primary-large {
    background: #27ae60;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.3);
}

.btn-primary-large:hover {
    background: #2ecc71;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.4);
}

.guarantee {
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Production Pipeline */
.production-pipeline {
    padding: 100px 0;
}

.architecture-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.prod-component {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 6px solid #3498db;
}

.prod-component h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.purpose {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tech-stack {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.tech-stack code {
    background: #3498db;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

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

.component-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.component-features li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

.deployment-strategies {
    margin-top: 5rem;
}

.deployment-strategies h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.strategy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 6px solid #27ae60;
}

.strategy-card h4 {
    color: #27ae60;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.strategy-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.use-case {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.strategy-code {
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

.strategy-code pre {
    margin: 0;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-local-ai h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .challenges-grid,
    .components-grid,
    .models-grid,
    .security-principles,
    .cost-scenarios,
    .services-showcase,
    .architecture-components {
        grid-template-columns: 1fr;
    }
    
    .phase-item {
        padding-left: 0;
    }
    
    .phases-timeline::before {
        display: none;
    }
    
    .phase-item::before {
        display: none;
    }
    
    .phase-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .service-meta {
        flex-direction: column;
    }
    
    .setup-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 4rem;
}

.mt-large {
    margin-top: 4rem;
}

.highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #ffd3a5 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.code-inline {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #2c3e50;
    border: 1px solid #e9ecef;
}

/* Dark mode support for code blocks */
@media (prefers-color-scheme: dark) {
    .code-block,
    .install-cmd,
    .code-example,
    .strategy-code {
        background: #1a1a1a;
        color: #f8f8f2;
    }
}