/* CosmoDocs - Balanced Professional SaaS Outline (Restored & Polished) */

:root {
    --cosmo-bg: #ffffff;
    --cosmo-surface: #f9fafb;
    --cosmo-text: #111827;
    --cosmo-text-muted: #4b5563;
    --cosmo-border: #d1d5db;
}

.cosmo-page {
    background: var(--cosmo-bg);
    color: var(--cosmo-text);
    line-height: 1.7;
    text-align: left;
}

.cosmo-section {
    padding: 70px 0;
}

/* Symmetrical Outline Box */
.outline-box {
    border: 1px dashed var(--cosmo-border);
    border-radius: 12px;
    padding: 40px;
    background: #ffffff;
    height: 100%;
    transition: none; /* No hovers */
}

/* Typography */
.cosmo-h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cosmo-h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

.cosmo-lead {
    font-size: 1.1rem;
    color: var(--cosmo-text-muted);
    margin-bottom: 32px;
}

.cosmo-text {
    font-size: 15px;
    color: var(--cosmo-text-muted);
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.capability-card {
    border: 1px dashed var(--cosmo-border);
    border-radius: 12px;
    padding: 35px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-card strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cosmo-text);
}

/* Process Pipeline */
.process-list {
    margin-top: 20px;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px dashed var(--cosmo-border);
}
.process-step:last-child { border-bottom: none; }

.step-number {
    font-size: 20px;
    font-weight: 800;
    color: #e5e7eb;
}

/* Financial Box */
.financial-box {
    background: var(--cosmo-surface);
    border: 1px dashed var(--cosmo-border);
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.price-item {
    border: 1px dashed var(--cosmo-border);
    border-radius: 12px;
    padding: 40px 32px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-item.popular {
    border-style: solid;
    border-width: 2px;
    border-color: #111827;
}

.price-name {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cosmo-text-muted);
    margin-bottom: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--cosmo-text);
}

.price-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.price-item li {
    padding: 10px 0;
    border-bottom: 1px dashed #f3f4f6;
    font-size: 14px;
    color: var(--cosmo-text-muted);
}
.price-item li:last-child { border-bottom: none; }

/* Global Font Sync */
.cosmo-page * {
    font-family: inherit;
}

/* Responsive */
@media (max-width: 1100px) {
    .capabilities-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .capabilities-grid, .pricing-grid { grid-template-columns: 1fr; }
    .cosmo-section { padding: 50px 0; }
    .outline-box, .financial-box { padding: 40px 30px; }
}
