/* Deployment Guide Specific Styles */

.guide-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.guide-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-home {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-home:hover {
    color: var(--accent-light);
}

.nav-title {
    font-weight: 600;
    color: var(--primary);
}

/* Hero */
.guide-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}

.guide-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guide-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.guide-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Enhanced Navigation for Mobile */
@media (max-width: 768px) {
    .guide-nav {
        padding: 12px 0;
    }
    
    .guide-nav .container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .nav-title {
        font-size: 0.95rem;
    }
}

/* Table of Contents */
.guide-toc {
    padding: 60px 0;
    background: var(--bg-light);
}

.toc-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.toc-card h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: var(--bg-light);
    border-left-color: var(--accent);
    color: var(--accent);
    padding-left: 20px;
}

/* Sticky Table of Contents for Desktop */
@media (min-width: 1025px) {
    .guide-toc {
        position: relative;
    }
    
    .toc-card {
        position: sticky;
        top: 20px;
    }
}

/* Enhanced Table of Contents for Mobile */
@media (max-width: 768px) {
    .guide-toc {
        padding: 40px 0;
    }
    
    .toc-card {
        padding: 24px;
    }
    
    .toc-card h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .toc-link {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* Guide Sections */
.guide-section {
    padding: 80px 0;
}

.guide-section.alt-bg {
    background: var(--bg-section);
}

.phase-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 900px;
}

.phase-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}

.phase-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.phase-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Tool Category Cards */
.tool-category-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.tool-category-card h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 600;
}

.tool-item {
    margin-bottom: 40px;
}

.tool-item:last-child {
    margin-bottom: 0;
}

.tool-item-header h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.tool-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tool-rec-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.tool-rec-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.tool-rec-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tool-rec-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tool-rec-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.tool-rec-desc {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tool-rec-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tool-rec-price {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.tool-rec-trial {
    color: var(--text-light);
    font-size: 0.875rem;
}

.tool-rec-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-tag {
    background: var(--bg-section);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tool-rec-learning {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Workflow Box */
.workflow-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 32px;
}

.workflow-box h3,
.workflow-box h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.workflow-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.workflow-steps li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.workflow-steps li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Tabs */
.option-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--accent);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Code Guide */
.code-guide {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.code-guide h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.code-section {
    margin-bottom: 32px;
}

.code-section h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.code-section ul {
    list-style: none;
    padding-left: 0;
}

.code-section ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
}

.code-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Deployment Options */
.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.deployment-option-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.deployment-option-card.featured {
    border: 2px solid var(--accent);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.option-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.option-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.option-badge.easy {
    background: #d1fae5;
    color: #065f46;
}

.option-badge.recommended {
    background: #dbeafe;
    color: #1e40af;
}

.option-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.deployment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deployment-item {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.deployment-item strong {
    color: var(--primary);
    font-weight: 600;
}

.deployment-steps {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.deployment-steps h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.alternative-platforms {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.alternative-platforms h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.alternative-platforms ul {
    list-style: none;
    padding-left: 0;
}

.alternative-platforms ul li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.alternative-platforms ul li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Workflow Timeline */
.workflow-timeline {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.timeline-day {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.timeline-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.timeline-item ul {
    list-style: none;
    padding-left: 0;
}

.timeline-item ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

.timeline-item ul li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Stacks Grid */
.stacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.stack-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stack-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.stack-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stack-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stack-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.stack-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.stack-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.stack-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.stack-tools {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 20px;
}

.stack-tools li {
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stack-tools li strong {
    color: var(--primary);
    font-weight: 600;
}

.stack-learning {
    color: var(--text-light);
    font-size: 0.875rem;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tip-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tip-card p strong {
    color: var(--primary);
    font-weight: 600;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.resource-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.resource-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.resource-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--accent-light);
}

/* Cost Comparison */
.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cost-tier {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.cost-tier.featured {
    border: 2px solid var(--accent);
}

.cost-tier h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.cost-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.cost-tier ul {
    list-style: none;
    padding-left: 0;
}

.cost-tier ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cost-tier ul li strong {
    color: var(--primary);
    font-weight: 600;
}

.cost-note {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

.cost-note p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cost-note strong {
    color: var(--primary);
    font-weight: 600;
}

/* CTA Section */
.guide-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-content p strong {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.guide-footer {
    background: var(--bg-section);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.guide-footer p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.guide-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.guide-footer a:hover {
    color: var(--accent-light);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
}

/* Scroll Progress Indicator */
.guide-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Enhanced Hero Section */
@media (max-width: 480px) {
    .guide-hero {
        padding: 60px 0 40px;
    }
    
    .guide-hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .guide-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .guide-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .meta-item {
        font-size: 0.875rem;
    }
}

/* Enhanced Phase Headers */
@media (max-width: 480px) {
    .phase-header {
        gap: 12px;
    }
    
    .phase-number {
        font-size: 1.5rem;
    }
    
    .phase-header h2 {
        font-size: 1.75rem;
    }
    
    .phase-subtitle {
        font-size: 1.125rem;
    }
}

/* Enhanced Tool Category Cards */
@media (max-width: 768px) {
    .tool-category-card {
        padding: 24px;
    }
    
    .tool-category-card h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .tool-item-header h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .tool-category-card {
        padding: 20px 16px;
    }
    
    .tool-rec-card {
        padding: 20px;
    }
    
    .tool-rec-name {
        font-size: 1.125rem;
    }
    
    .tool-rec-desc {
        font-size: 0.9rem;
    }
}

/* Enhanced Tabs */
@media (max-width: 768px) {
    .option-tabs {
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .option-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* Enhanced Deployment Options */
@media (max-width: 768px) {
    .deployment-option-card {
        padding: 24px;
    }
    
    .option-header h3 {
        font-size: 1.25rem;
    }
    
    .deployment-item {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .deployment-option-card {
        padding: 20px 16px;
    }
    
    .deployment-steps h4,
    .alternative-platforms h4 {
        font-size: 1rem;
    }
}

/* Enhanced Timeline */
@media (max-width: 768px) {
    .workflow-timeline {
        gap: 24px;
    }
    
    .timeline-item {
        padding: 24px;
    }
    
    .timeline-item h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding: 20px 16px;
    }
    
    .timeline-day {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Enhanced Stacks Grid */
@media (max-width: 768px) {
    .stacks-grid {
        gap: 24px;
    }
    
    .stack-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .stack-card {
        padding: 20px 16px;
    }
    
    .stack-icon {
        font-size: 2.5rem;
    }
    
    .stack-card h3 {
        font-size: 1.25rem;
    }
    
    .stack-price {
        font-size: 1.5rem;
    }
}

/* Enhanced Tips Grid */
@media (max-width: 768px) {
    .tips-grid {
        gap: 20px;
    }
    
    .tip-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .tip-card {
        padding: 20px 16px;
    }
    
    .tip-icon {
        font-size: 2rem;
    }
    
    .tip-card h3 {
        font-size: 1.125rem;
    }
}

/* Enhanced Resources Grid */
@media (max-width: 768px) {
    .resources-grid {
        gap: 20px;
    }
}

/* Enhanced Cost Comparison */
@media (max-width: 768px) {
    .cost-comparison {
        gap: 24px;
    }
    
    .cost-tier {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .cost-tier {
        padding: 20px 16px;
    }
    
    .cost-amount {
        font-size: 1.75rem;
    }
}

/* Enhanced CTA Section */
@media (max-width: 768px) {
    .guide-cta {
        padding: 60px 0;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button.secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .guide-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Enhanced Footer */
@media (max-width: 480px) {
    .guide-footer {
        padding: 32px 0;
    }
}

/* Enhanced Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Enhanced Code Guide */
@media (max-width: 768px) {
    .code-guide {
        padding: 24px;
    }
    
    .code-guide h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .code-guide {
        padding: 20px 16px;
    }
}

/* Enhanced Workflow Box */
@media (max-width: 768px) {
    .workflow-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .workflow-box {
        padding: 20px 16px;
    }
    
    .workflow-steps li {
        padding: 10px 0 10px 36px;
        font-size: 0.95rem;
    }
    
    .workflow-steps li::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .tool-recommendations {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .deployment-options {
        grid-template-columns: 1fr;
    }
    
    .stacks-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Enhanced Container Padding */
@media (max-width: 480px) {
    .guide-section .container {
        padding: 0 16px;
    }
    
    .guide-hero .container,
    .guide-toc .container {
        padding: 0 16px;
    }
}

/* Responsive - Base Mobile Styles */
@media (max-width: 768px) {
    .phase-header {
        flex-direction: column;
        gap: 16px;
    }

    .phase-number {
        font-size: 2rem;
    }

    .tool-recommendations {
        grid-template-columns: 1fr;
    }

    .deployment-options {
        grid-template-columns: 1fr;
    }

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

    .stack-card.featured {
        transform: none;
    }

    .stack-card.featured:hover {
        transform: translateY(-4px);
    }

    .cost-comparison {
        grid-template-columns: 1fr;
    }
}

