/* =============================================
   index.html — page-specific styles
   ============================================= */

/* Override: index uses different body padding and container width */
body {
    padding: 4rem 2rem;
}

.container {
    max-width: 128rem;
}

/* Override: index footer uses light style */
footer {
    background-color: transparent;
    color: #666666;
    margin-top: 8rem;
    padding: 3.2rem 0 0;
    border-top: 1px solid #e8e8e8;
}

footer p {
    color: #666666;
}

.last-updated {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    color: #999999;
}

/* --- Header --- */
header {
    margin-bottom: 6rem;
}

h1 {
    margin-bottom: 2.4rem;
}

.company-tag {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin-bottom: 1.6rem;
}

.mission-statement {
    font-size: 2rem;
    color: #4d4d4d;
    max-width: 80rem;
    line-height: 1.5;
}

/* --- Main Content Grid --- */
.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 991px) {
    .main-content {
        grid-template-columns: 2fr 1fr;
    }
}

/* --- Offerings --- */
.offerings {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.offering {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0.8rem;
    padding: 3.2rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
}

/* Override: index h2/h3 differ from subpages */
h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 2.4rem;
    text-align: left;
}

h3 {
    font-size: 2.2rem;
    margin-top: 2.4rem;
}

/* --- Sidebar --- */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.summary-box {
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0.8rem;
    padding: 2.4rem;
}

.summary-box h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #1a1a1a;
}

.summary-box ul {
    margin-bottom: 0;
}

/* --- Next Steps / CTA --- */
.next-steps {
    background: #fafafa;
    border: 2px solid #ea580c;
    border-radius: 0.8rem;
    padding: 2.4rem;
    font-size: 1.6rem;
    color: #1a1a1a;
    position: sticky;
    top: 2.4rem;
}

.next-steps h3 {
    margin-top: 0;
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    color: #ea580c;
}

/* --- Example / Highlight Boxes --- */
.example-projects {
    background-color: #f5f5f5;
    border-left: 3px solid #ea580c;
    padding: 1.6rem 2.4rem;
    margin: 2.4rem 0;
}

.micro-poc-definition {
    background-color: #f5f5f5;
    border-left: 3px solid #ea580c;
    padding: 1.6rem 2.4rem;
    margin: 2.4rem 0;
}

.highlight {
    color: #ea580c;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 990px) {
    body {
        padding: 2rem 1.6rem;
    }

    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 2.6rem;
    }

    h3 {
        font-size: 2rem;
    }

    .offering {
        padding: 2.4rem;
    }

    .next-steps {
        position: static;
    }
}
