/* Use-cases page styles. Loaded after styles.css for use-cases/* and why-tad1/*. */

.uc-hero {
    padding: 80px 0 64px;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}
.uc-breadcrumb {
    font-size: 14px;
    color: var(--text-light, #64748b);
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.uc-breadcrumb a {
    color: var(--text-light, #64748b);
    text-decoration: none;
}
.uc-breadcrumb a:hover { color: var(--primary, #6366F1); }
.uc-breadcrumb .sep { color: #cbd5e1; }
.uc-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary, #6366F1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}
.uc-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 900px;
    color: var(--dark, #0f172a);
}
.uc-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light, #475569);
    max-width: 760px;
    margin-bottom: 36px;
}
.uc-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.uc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    max-width: 720px;
    padding: 32px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}
.uc-stats > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.uc-stats strong {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary, #6366F1);
    letter-spacing: -1px;
}
.uc-stats span {
    font-size: 14px;
    color: var(--text-light, #64748b);
}

.uc-section {
    padding: 88px 0;
}
.uc-alt {
    background: #fafbff;
}
.uc-narrow {
    max-width: 820px;
}
.uc-section h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--dark, #0f172a);
}
.uc-section h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--dark, #0f172a);
}
.uc-section p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light, #475569);
    margin-bottom: 16px;
}
.uc-section-lead {
    font-size: 19px !important;
    margin-bottom: 48px !important;
}
.uc-section code {
    background: #eef2ff;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    color: var(--primary, #6366F1);
}

.uc-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.uc-pain {
    padding: 28px;
    background: white;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uc-pain:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}
.uc-pain i {
    font-size: 32px;
    color: var(--primary, #6366F1);
    margin-bottom: 16px;
    display: block;
}
.uc-pain h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--dark, #0f172a);
}
.uc-pain p {
    font-size: 15px;
    color: var(--text-light, #64748b);
    margin: 0;
    line-height: 1.6;
}

.uc-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}
.uc-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.08);
}
.uc-step-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary, #6366F1);
    letter-spacing: -1px;
    line-height: 1;
}
.uc-step h3 {
    margin-top: 0;
    font-size: 20px;
}
.uc-step p {
    font-size: 16px;
    margin-bottom: 0;
}

.uc-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.uc-pricing-table th {
    background: var(--primary, #6366F1);
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.uc-pricing-table td {
    padding: 16px 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    font-size: 15px;
    color: var(--dark, #0f172a);
}
.uc-pricing-table td:nth-child(2) { font-weight: 600; }
.uc-pricing-table td:last-child { font-weight: 700; color: var(--primary, #6366F1); }
.uc-fineprint {
    font-size: 13px !important;
    color: var(--text-light, #94a3b8) !important;
    margin-top: 16px !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .uc-hero { padding: 56px 0 40px; }
    .uc-hero h1 { font-size: 36px; letter-spacing: -1px; }
    .uc-lead { font-size: 17px; }
    .uc-section { padding: 56px 0; }
    .uc-section h2 { font-size: 28px; }
    .uc-stats { gap: 20px; }
    .uc-stats strong { font-size: 24px; }
    .uc-step { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
    .uc-step-num { font-size: 28px; }
    .uc-pricing-table { font-size: 13px; }
    .uc-pricing-table th, .uc-pricing-table td { padding: 12px 14px; }
}
