/* ==========================================================================
   COLLABORATION PAGE (collaboration.html)
   ========================================================================== */

.collab-wrapper {
    font-family: var(--font-body);
    color: var(--color-text);
}

.collab-header {
    margin-bottom: 48px;
    position: relative;
    text-align: left; /* Strict left alignment */
}

.intro-section {
    background: var(--bg-block);
    border-left: 4px solid var(--accent-line);
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 64px;
    font-size: 16px;
    color: var(--color-text-muted);
    transition: background-color 0.4s ease;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.step-wrapper h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--color-heading);
}

.step-card {
    background: var(--bg-block);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    flex-grow: 1;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.step-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Custom list items inside step-text */
.step-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.step-text ul li::before {
    content: '→'; /* Minimalist arrow */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-line);
    font-weight: 700;
}

.contract-btn-container {
    margin-top: 48px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .intro-section { padding: 16px 24px; }
}
