/* ============================================
   Use Cases Pages - Marketing with Clean Polish
   ============================================ */

/* ==========================================================================
   Shared Foundation
   ========================================================================== */

.c-use-cases {
    background: #f8fafc;
    min-height: 100vh;
}

/* ==========================================================================
   Hero Section - Dark Gradient (Clean)
   ========================================================================== */

.c-use-cases__hero {
    background: #ffffff;
    padding: 56px 24px 48px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.c-use-cases__hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.c-use-cases__hero-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 20px;
}

.c-use-cases__hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 14px 0;
    color: #0f172a;
}

.c-use-cases__hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Hero Variant (for detail pages) */
.c-use-cases__hero--dark {
    background: #0f172a;
    border-bottom: none;
    padding: 64px 24px 72px;
}

.c-use-cases__hero--dark .c-use-cases__hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.c-use-cases__hero--dark .c-use-cases__hero-title {
    color: #ffffff;
}

.c-use-cases__hero--dark .c-use-cases__hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Content Container
   ========================================================================== */

.c-use-cases__content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ==========================================================================
   Back Link
   ========================================================================== */

.c-use-cases__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 32px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-use-cases__back-link:hover {
    color: #0f172a;
}

.c-use-cases__back-link:focus,
.c-use-cases__back-link:active {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.c-use-cases__back-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   Section Styling
   ========================================================================== */

.c-use-cases__section {
    padding-top: 56px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 56px;
}

.c-use-cases__section:last-child {
    border-bottom: none;
}

.c-use-cases__section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3b82f6;
    background: #eff6ff;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.c-use-cases__section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 12px 0;
    color: #0f172a;
}

.c-use-cases__section-lead {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

.c-use-cases__section-lead + .c-use-cases__section-lead {
    margin-top: 12px;
}

/* ==========================================================================
   Scenario Cards (Landing Page)
   ========================================================================== */

.c-use-cases__scenarios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.c-use-cases__scenario-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none !important;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    outline: none;
}

.c-use-cases__scenario-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.c-use-cases__scenario-card--perfect-strike:hover { border-left-color: #ef4444; }
.c-use-cases__scenario-card--golden-goal:hover { border-left-color: #3b82f6; }
.c-use-cases__scenario-card--correct-score:hover { border-left-color: #f59e0b; }
.c-use-cases__scenario-card--gaa:hover { border-left-color: #10b981; }

.c-use-cases__scenario-card * {
    text-decoration: none !important;
}

.c-use-cases__scenario-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.c-use-cases__scenario-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.c-use-cases__scenario-icon--perfect-strike {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.c-use-cases__scenario-icon--golden-goal {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.c-use-cases__scenario-icon--correct-score {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.c-use-cases__scenario-icon--gaa {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.c-use-cases__scenario-content {
    flex: 1;
    min-width: 0;
}

.c-use-cases__scenario-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #fef3c7;
    color: #92400e;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 8px;
}

.c-use-cases__scenario-badge--gaa {
    background: #d1fae5;
    color: #065f46;
}

.c-use-cases__scenario-badge--golden-goal {
    background: #dbeafe;
    color: #1e40af;
}

.c-use-cases__scenario-badge--correct-score {
    background: #fef3c7;
    color: #92400e;
}

.c-use-cases__scenario-badge--coming {
    background: #f1f5f9;
    color: #64748b;
}

.c-use-cases__scenario-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.c-use-cases__scenario-description {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.c-use-cases__scenario-sport {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.c-use-cases__scenario-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

.c-use-cases__scenario-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.c-use-cases__scenario-card:hover .c-use-cases__scenario-arrow {
    color: #64748b;
    transform: translateY(-50%) translateX(2px);
}

.c-use-cases__scenario-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.c-use-cases__scenario-card:hover .c-use-cases__scenario-link {
    color: #2563eb;
}

/* ==========================================================================
   How It Works (3-step compact on main page)
   ========================================================================== */

.c-use-cases__how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.c-use-cases__how-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.c-use-cases__how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #0891b2 100%);
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}

.c-use-cases__how-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.c-use-cases__how-step-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* ==========================================================================
   Value Checklist (main page)
   ========================================================================== */

.c-use-cases__checklist {
    margin-top: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 32px;
}

.c-use-cases__checklist-intro {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.c-use-cases__checklist-intro strong {
    color: #0f172a;
}

.c-use-cases__checklist-list {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.c-use-cases__checklist-list li {
    position: relative;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    padding: 4px 0 4px 8px;
}

.c-use-cases__checklist-list li::before {
    content: '\2713';
    position: absolute;
    left: -20px;
    color: #10b981;
    font-weight: 600;
}

.c-use-cases__checklist-summary {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.c-use-cases__checklist-punchline {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

/* ==========================================================================
   New to Bluefundr Link (sub-pages)
   ========================================================================== */

.c-use-cases__setup-link {
    margin-top: 32px;
    padding: 20px 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.6;
}

.c-use-cases__setup-link a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
}

.c-use-cases__setup-link a:hover {
    color: #2563eb;
}

/* ==========================================================================
   Feature Grid (4-up cards)
   ========================================================================== */

.c-use-cases__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.c-use-cases__feature {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.c-use-cases__feature:hover {
    border-color: #cbd5e1;
}

.c-use-cases__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.c-use-cases__feature-icon--blue { background: #eff6ff !important; color: #3b82f6 !important; }
.c-use-cases__feature-icon--green { background: #f0fdf4 !important; color: #22c55e !important; }
.c-use-cases__feature-icon--orange { background: #fff7ed !important; color: #f97316 !important; }
.c-use-cases__feature-icon--purple { background: #faf5ff !important; color: #a855f7 !important; }

.c-use-cases__feature-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.c-use-cases__feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.c-use-cases__feature-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* ==========================================================================
   Steps Timeline
   ========================================================================== */

.c-use-cases__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
    position: relative;
}

.c-use-cases__steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #10b981);
    border-radius: 2px;
}

.c-use-cases__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.c-use-cases__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.c-use-cases__step:nth-child(even) .c-use-cases__step-num {
    background: #10b981;
}

.c-use-cases__step-body {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
    flex: 1;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.c-use-cases__step-body:hover {
    border-color: #cbd5e1;
}

.c-use-cases__step-title {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.c-use-cases__step-text {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Financial Cards
   ========================================================================== */

.c-use-cases__finance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.c-use-cases__finance-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.c-use-cases__finance-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.c-use-cases__finance-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 8px 0;
}

.c-use-cases__finance-value--green { color: #10b981; }
.c-use-cases__finance-value--blue { color: #3b82f6; }
.c-use-cases__finance-value--orange { color: #f59e0b; }
.c-use-cases__finance-value--muted { color: #64748b; }

.c-use-cases__finance-detail {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Breakdown Table
   ========================================================================== */

.c-use-cases__breakdown {
    margin-top: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.c-use-cases__breakdown-header {
    background: #f8fafc;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.c-use-cases__breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    align-items: center;
}

.c-use-cases__breakdown-row:last-child {
    border-bottom: none;
}

.c-use-cases__breakdown-label {
    color: #64748b;
}

.c-use-cases__breakdown-value {
    font-weight: 600;
    color: #0f172a;
}

.c-use-cases__breakdown-value--green { color: #10b981; }
.c-use-cases__breakdown-value--red { color: #94a3b8; }

.c-use-cases__breakdown-row--total {
    background: #f0fdf4;
}

.c-use-cases__breakdown-row--total .c-use-cases__breakdown-label {
    color: #10b981;
    font-weight: 600;
}

.c-use-cases__breakdown-row--total .c-use-cases__breakdown-value {
    color: #10b981;
    font-size: 17px;
}

/* ==========================================================================
   Scenario Table
   ========================================================================== */

.c-use-cases__table-wrapper {
    margin-top: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.c-use-cases__table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    min-width: 500px;
}

.c-use-cases__table th {
    background: #0f172a;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.c-use-cases__table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #334155;
}

.c-use-cases__table tr:last-child td {
    border-bottom: none;
}

.c-use-cases__table tr:nth-child(even) {
    background: #f8fafc;
}

.c-use-cases__table tr.c-use-cases__table-row--highlight {
    background: #f0fdf4 !important;
}

.c-use-cases__table-row--highlight td {
    font-weight: 600;
}

.c-use-cases__table-value--green {
    color: #10b981;
    font-weight: 600;
}

/* ==========================================================================
   Callout Box (Dark)
   ========================================================================== */

.c-use-cases__callout {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 32px;
}

.c-use-cases__callout-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #166534;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.c-use-cases__callout-text {
    color: #15803d;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

.c-use-cases__callout-text strong {
    color: #166534;
}

/* ==========================================================================
   Timeline (Workflow)
   ========================================================================== */

.c-use-cases__timeline {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-use-cases__timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: baseline;
}

.c-use-cases__timeline-item:last-child {
    border-bottom: none;
}

.c-use-cases__timeline-time {
    flex-shrink: 0;
    width: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.c-use-cases__timeline-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.c-use-cases__timeline-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Coming Soon Badge
   ========================================================================== */

.c-use-cases__coming-badge {
    display: inline-block;
    background: #fff7ed;
    color: #c2410c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/* ==========================================================================
   Value Block (Fee Reframe)
   ========================================================================== */

.c-use-cases__value-block {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
}

.c-use-cases__value-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.c-use-cases__value-list {
    margin: 0 0 16px 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.c-use-cases__value-list li {
    position: relative;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    padding: 4px 0;
    padding-left: 8px;
}

.c-use-cases__value-list li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #10b981;
    font-weight: 600;
}

.c-use-cases__value-summary {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.c-use-cases__value-punchline {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

/* ==========================================================================
   Inline Text
   ========================================================================== */

.c-use-cases__text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 20px 0 0 0;
}

.c-use-cases__text strong {
    color: #0f172a;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.c-use-cases__faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.c-use-cases__faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
}

.c-use-cases__faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.c-use-cases__faq-answer {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.c-use-cases__faq-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-use-cases__faq-link:hover {
    color: #2563eb;
    text-decoration: none;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.c-use-cases__cta {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 56px;
}

.c-use-cases__cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.c-use-cases__cta-text {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.c-use-cases__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #0891b2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.c-use-cases__cta-button:hover,
.c-use-cases__cta-button:active,
.c-use-cases__cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    color: white;
    text-decoration: none !important;
}

.c-use-cases__cta-button svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .c-use-cases__hero {
        padding: 40px 20px 36px;
    }

    .c-use-cases__hero--dark {
        padding: 48px 20px 56px;
    }

    .c-use-cases__hero-title {
        font-size: 28px;
    }

    .c-use-cases__content {
        padding: 0 20px 64px;
    }

    .c-use-cases__section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .c-use-cases__section-title {
        font-size: 24px;
    }

    .c-use-cases__features,
    .c-use-cases__finance-grid {
        grid-template-columns: 1fr;
    }

    .c-use-cases__steps::before {
        left: 19px;
    }

    .c-use-cases__step-num {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .c-use-cases__step-body {
        padding: 20px;
    }

    .c-use-cases__scenario-card {
        flex-direction: row;
        gap: 16px;
        padding: 20px;
    }

    .c-use-cases__scenario-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .c-use-cases__scenario-arrow {
        display: none;
    }

    .c-use-cases__scenario-card:hover {
        transform: none;
    }

    .c-use-cases__how-steps {
        grid-template-columns: 1fr;
    }

    .c-use-cases__scenario-title {
        font-size: 16px;
    }

    .c-use-cases__scenario-description {
        font-size: 13px;
    }

    .c-use-cases__callout {
        padding: 24px;
    }

    .c-use-cases__callout-title {
        font-size: 20px;
    }

    .c-use-cases__timeline-item {
        flex-direction: column;
        gap: 4px;
    }

    .c-use-cases__timeline-time {
        width: auto;
    }

    .c-use-cases__finance-value {
        font-size: 32px;
    }

    .c-use-cases__cta {
        padding: 32px 20px;
    }

    .c-use-cases__faq-item {
        padding: 20px;
    }

    .c-use-cases__value-block {
        padding: 20px;
    }

    .c-use-cases__value-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .c-use-cases__hero {
        padding: 32px 16px 28px;
    }

    .c-use-cases__hero--dark {
        padding: 36px 16px 44px;
    }

    .c-use-cases__hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .c-use-cases__hero-title {
        font-size: 26px;
    }

    .c-use-cases__hero-subtitle {
        font-size: 15px;
    }

    .c-use-cases__content {
        padding: 0 16px 48px;
    }

    .c-use-cases__section-title {
        font-size: 22px;
    }

    .c-use-cases__feature,
    .c-use-cases__finance-card {
        padding: 20px;
    }

    .c-use-cases__breakdown-row {
        padding: 12px 16px;
        font-size: 14px;
    }

    .c-use-cases__table th,
    .c-use-cases__table td {
        padding: 12px;
        font-size: 13px;
    }
}
