/* Getting Started Section - Shared Styles */

.gs-content-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.gs-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #2f4050;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1ab394;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2f4050 0%, #1a252f 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 60px;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav i {
    margin: 0 0.5rem;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero h1 i {
    color: #1ab394;
    margin-right: 1rem;
}

.page-hero .lead {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: white;
}

.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 2rem;
}

.content-section .intro {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Problem Illustration */
.problem-illustration {
    margin: 2.5rem 0;
}

.problem-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
}

.problem-box.wrong {
    border-color: #ed5565;
}

.problem-box.right {
    border-color: #1ab394;
}

.problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.problem-box i {
    margin-bottom: 1.5rem;
}

.problem-box.wrong i {
    color: #ed5565;
}

.problem-box.right i {
    color: #1ab394;
}

.problem-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1.5rem;
}

.problem-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.problem-box .impact {
    font-weight: 600;
    color: #2f4050;
    font-style: italic;
}

/* Insight Callout */
.insight-callout {
    background: linear-gradient(135deg, #e8f5f1 0%, #ffffff 100%);
    border-left: 5px solid #1ab394;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
}

.insight-callout i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: #1ab394;
    opacity: 0.3;
}

.insight-callout .quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    font-style: italic;
    margin: 0;
    padding-left: 3rem;
    line-height: 1.6;
}

/* Transformation Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.transform-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.transform-card:hover {
    border-color: #1ab394;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.transform-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(26, 179, 148, 0.3);
}

.transform-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin: 1.5rem 0 1rem;
}

.transform-card p {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.transform-card .before {
    color: #ed5565;
    padding-left: 1rem;
    border-left: 3px solid #ed5565;
}

.transform-card .after {
    color: #1ab394;
    padding-left: 1rem;
    border-left: 3px solid #1ab394;
}

.transform-card .explanation {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

/* Culture Comparison */
.culture-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
}

.culture-column {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 3px solid;
}

.culture-column.firefighter {
    border-color: #ed5565;
}

.culture-column.solver {
    border-color: #1ab394;
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
}

.culture-column h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1.5rem;
}

.culture-column h4 i {
    margin-right: 0.5rem;
}

.culture-column.firefighter h4 i {
    color: #ed5565;
}

.culture-column.solver h4 i {
    color: #1ab394;
}

.culture-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-column ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.culture-column ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.culture-column.firefighter ul li:before {
    color: #ed5565;
}

.culture-column.solver ul li:before {
    color: #1ab394;
}

.arrow-divider {
    color: #1ab394;
    text-align: center;
}

/* Capability Benefits */
.capability-benefits {
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e8f5f1;
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Platform Comparison */
.platform-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.comparison-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 3px solid;
}

.comparison-card.traditional {
    border-color: #e0e0e0;
}

.comparison-card.kaizely {
    border-color: #1ab394;
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
}

.comparison-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #666;
    line-height: 1.6;
}

.comparison-list i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.comparison-card.traditional .comparison-list i {
    color: #999;
}

.comparison-card.kaizely .comparison-list i {
    color: #1ab394;
}

.comparison-card .verdict {
    font-weight: 600;
    color: #2f4050;
    font-size: 1.1rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.comparison-card.kaizely .verdict {
    border-color: #1ab394;
}

/* Timeline Visual */
.timeline-visual {
    margin: 2.5rem 0;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2.5rem;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: -20px;
    width: 3px;
    background: linear-gradient(180deg, #1ab394 0%, #18a689 100%);
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(26, 179, 148, 0.3);
    white-space: nowrap;
}

.timeline-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.timeline-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Challenge Cards */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.challenge-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border-left: 5px solid #ed5565;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ed5565 0%, #da4453 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.challenge-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin: 0;
}

.challenge-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mitigation-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1ab394;
    margin-bottom: 1rem;
}

.mitigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mitigation-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.mitigation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1ab394;
    font-weight: bold;
}

/* Cadence Flow */
.cadence-flow {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 3rem;
    margin: 2.5rem 0;
}

.flow-level {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 5px solid;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.flow-level.daily { border-color: #3498db; }
.flow-level.weekly { border-color: #1ab394; }
.flow-level.monthly { border-color: #f39c12; }
.flow-level.quarterly { border-color: #9b59b6; }

.flow-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.flow-level.daily .flow-icon { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.flow-level.weekly .flow-icon { background: linear-gradient(135deg, #1ab394 0%, #18a689 100%); }
.flow-level.monthly .flow-icon { background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); }
.flow-level.quarterly .flow-icon { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }

.flow-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 0.25rem;
}

.flow-duration {
    display: inline-block;
    background: #e8f5f1;
    color: #1ab394;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.flow-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.flow-items {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.flow-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.flow-items li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1ab394;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
}

/* Footer */
.gs-footer {
    background: #2f4050;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.gs-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.gs-footer a:hover {
    color: #1ab394;
}

/* Responsive */
@media (max-width: 992px) {
    .culture-comparison {
        flex-direction: column;
    }
    
    .arrow-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .lead {
        font-size: 1.125rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-comparison {
        grid-template-columns: 1fr;
    }
    
    .timeline-visual {
        padding-left: 1rem;
    }
    
    .timeline-marker {
        position: relative;
        left: 0;
        display: inline-block;
        margin-bottom: 1rem;
    }
}
