/* Case Study: Receipt Reader (QRA Financials) – banner and hero only */

/* Ensure Our Success Stories stays highlighted on this case study */
body.page-case-study-receipt-reader .main-nav a.nav-link[href="/success-stories"] {
    color: #ffffff;
    border-bottom-color: #e85d2a;
}

.cs-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    background-color: #1a2744;
    padding-top: 24px;
}

/* Same banner placement as other case studies (Volvo, etc.): cover + simple left overlay */
.page-case-study-receipt-reader .cs-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/banner-images/casestudy-receipt-reader-banner.webp');
    background-size: cover;
    background-position: 55% 50%;
    background-repeat: no-repeat;
}

/* Same overlay as CommitBiz, slightly darker for text readability */
.page-case-study-receipt-reader .cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.cs-hero-container {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding, 36px) 60px;
    max-width: var(--container-width, 1440px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Match Volvo case study logo size */
.cs-hero-logo-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.cs-hero-logo {
    width: 76px;
    height: auto;
    object-fit: contain;
    /* Logo is light grey in design – no invert */
}

.cs-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(232, 92, 41, 0.95);
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.cs-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cs-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px 0;
    line-height: 1.55;
}

.cs-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #e85c29;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cs-hero-cta:hover {
    background: #d64d1f;
    color: #fff;
    transform: translateY(-1px);
}

/* Key outcomes – 4 cards below hero (black bg, dark gray cards, orange icons) */
.cs-highlights--receipt-reader.cs-highlights {
    background: #000000;
    padding: 60px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-highlights--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-highlights--receipt-reader .cs-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cs-highlights--receipt-reader .cs-highlight-card {
    background: #18181b;
    border: 1.2px solid #27272a;
    border-radius: 17px;
    padding: 29px 29px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-highlights--receipt-reader .cs-highlight-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cs-highlights--receipt-reader .cs-highlight-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cs-highlights--receipt-reader .cs-highlight-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.74px;
    text-transform: uppercase;
    color: #71717b;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cs-highlights--receipt-reader .cs-highlight-title {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .cs-highlights--receipt-reader .cs-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cs-highlights--receipt-reader.cs-highlights {
        padding: 40px 20px;
    }

    .cs-highlights--receipt-reader .cs-highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cs-highlights--receipt-reader .cs-highlight-card {
        padding: 28px 24px 32px;
    }

    .cs-highlights--receipt-reader .cs-highlight-title {
        font-size: 17px;
    }
}

/* Receipt chaos / financial bottleneck – light bg, tag, title, intro + callout, Key Challenges 3x2 grid */
.cs-bottleneck--receipt-reader.cs-bottleneck {
    background: linear-gradient(150deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 81px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-bottleneck--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-tag {
    display: inline-block;
    background: rgba(232, 92, 41, 0.12);
    color: #c2410c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 25px;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.35;
    color: #0a0a0a;
    margin: 0 0 32px 0;
    max-width: 900px;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-intro {
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 40px;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-para {
    flex: 0 1 520px;
    font-size: 18px;
    line-height: 1.62;
    color: #4a5565;
    margin: 0;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-callout {
    flex: 1 1 auto;
    min-width: 0;
    background: linear-gradient(to right, rgba(232, 92, 41, 0.06), rgba(232, 92, 41, 0.12));
    border-left: 4px solid #e85c29;
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cs-bottleneck--receipt-reader .cs-bottleneck-callout-text {
    font-size: 18px;
    font-weight: 500;
    color: #c2410c;
    margin: 0;
    line-height: 1.55;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 28px 0;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 92, 41, 0.18) 0%, rgba(232, 92, 41, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.cs-bottleneck--receipt-reader .cs-bottleneck-card-desc {
    font-size: 16px;
    line-height: 1.62;
    color: #4a5565;
    margin: 0;
}

@media (max-width: 1024px) {
    .cs-bottleneck--receipt-reader .cs-bottleneck-title {
        font-size: 40px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-intro {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-para {
        flex: none;
        max-width: none;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cs-bottleneck--receipt-reader.cs-bottleneck {
        padding: 48px 20px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-intro {
        margin-bottom: 28px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-callout {
        padding: 24px 24px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cs-bottleneck--receipt-reader .cs-bottleneck-card {
        padding: 28px 24px;
    }
}

/* System Evolution: Manual vs AI-Driven (dark section, two panels, green checks, CTA) */
.cs-evolution--receipt-reader.cs-evolution {
    background: #030712;
    padding: 70px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-evolution--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-evolution--receipt-reader .cs-evolution-tag {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    background: rgba(232, 92, 41, 0.1);
    color: #e85c29;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 10px 20px;
    border-radius: 9999px;
    width: fit-content;
}

.cs-evolution--receipt-reader .cs-evolution-title {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-align: center;
    letter-spacing: 0.01em;
}

.cs-evolution--receipt-reader .cs-evolution-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #99a1af;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -0.01em;
}

.cs-evolution--receipt-reader .cs-evolution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cs-evolution--receipt-reader .cs-evolution-card {
    background: #101828;
    border-radius: 14px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.cs-evolution--receipt-reader .cs-evolution-card--before {
    border: 1px solid #1e2939;
}

.cs-evolution--receipt-reader .cs-evolution-card--after {
    border: 2px solid #e85c29;
}

.cs-evolution--receipt-reader .cs-evolution-badge {
    position: absolute;
    top: 24px;
    right: 32px;
    background: #00c950;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 8px;
}

.cs-evolution--receipt-reader .cs-evolution-card-label {
    font-size: 14px;
    color: #6a7282;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cs-evolution--receipt-reader .cs-evolution-card-label--orange {
    color: #e85c29;
}

.cs-evolution--receipt-reader .cs-evolution-card-heading {
    font-size: 24px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0 0 24px 0;
    line-height: 1.33;
}

.cs-evolution--receipt-reader .cs-evolution-card--after .cs-evolution-card-heading {
    color: #ffffff;
}

.cs-evolution--receipt-reader .cs-evolution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-evolution--receipt-reader .cs-evolution-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #99a1af;
    padding-left: 20px;
    position: relative;
    letter-spacing: -0.01em;
}

.cs-evolution--receipt-reader .cs-evolution-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a5565;
}

.cs-evolution--receipt-reader .cs-evolution-list--check li {
    padding-left: 36px;
    color: #f3f4f6;
}

.cs-evolution--receipt-reader .cs-evolution-list--check li::before {
    content: none;
}

.cs-evolution--receipt-reader .cs-evolution-check {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cs-evolution--receipt-reader .cs-evolution-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 40px;
    padding: 12px 24px;
    border: 1px solid #364153;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cs-evolution--receipt-reader .cs-evolution-cta:hover {
    border-color: #e85c29;
    background: rgba(232, 92, 41, 0.08);
    color: #fff;
}

.cs-evolution--receipt-reader .cs-evolution-cta-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cs-evolution--receipt-reader .cs-evolution-title {
        font-size: 32px;
    }

    .cs-evolution--receipt-reader .cs-evolution-grid {
        grid-template-columns: 1fr;
    }

    .cs-evolution--receipt-reader .cs-evolution-badge {
        top: 20px;
        right: 24px;
    }
}

@media (max-width: 600px) {
    .cs-evolution--receipt-reader.cs-evolution {
        padding: 48px 20px;
    }

    .cs-evolution--receipt-reader .cs-evolution-title {
        font-size: 26px;
    }

    .cs-evolution--receipt-reader .cs-evolution-card {
        padding: 28px 24px;
    }
}

/* The Implementation Roadmap – white bg, Execution Path label, 3 columns, orange circles, checklist */
.cs-roadmap--receipt-reader.cs-roadmap {
    background: #ffffff;
    padding: 80px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-roadmap--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-roadmap--receipt-reader .cs-roadmap-label {
    font-size: 14px;
    color: #e85c29;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.cs-roadmap--receipt-reader .cs-roadmap-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: 0.01em;
}

.cs-roadmap--receipt-reader .cs-roadmap-subtitle {
    font-size: 18px;
    line-height: 1.55;
    color: #4a5565;
    text-align: center;
    margin: 0 auto 65px;
    max-width: 800px;
    letter-spacing: -0.01em;
}

.cs-roadmap--receipt-reader .cs-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
    align-items: start;
}

.cs-roadmap--receipt-reader .cs-roadmap-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cs-roadmap--receipt-reader .cs-roadmap-num {
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background: #e85c29;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-roadmap--receipt-reader .cs-roadmap-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.cs-roadmap--receipt-reader .cs-roadmap-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
}

.cs-roadmap--receipt-reader .cs-roadmap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-roadmap--receipt-reader .cs-roadmap-list li {
    font-size: 14px;
    line-height: 1.45;
    color: #364153;
    padding-left: 32px;
    position: relative;
    letter-spacing: -0.01em;
}

.cs-roadmap--receipt-reader .cs-roadmap-check {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .cs-roadmap--receipt-reader .cs-roadmap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cs-roadmap--receipt-reader .cs-roadmap-title {
        font-size: 36px;
    }

    .cs-roadmap--receipt-reader .cs-roadmap-subtitle {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .cs-roadmap--receipt-reader.cs-roadmap {
        padding: 48px 20px;
    }

    .cs-roadmap--receipt-reader .cs-roadmap-title {
        font-size: 28px;
    }

    .cs-roadmap--receipt-reader .cs-roadmap-card {
        padding: 28px 24px;
    }
}

/* Our Product Development Approach – 3 cards, QRA graphics, colored headers/impact/CTA */
.cs-approach--receipt-reader.cs-approach {
    background: linear-gradient(151deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 81px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-approach--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-approach--receipt-reader .cs-approach-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #101828;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: 0.01em;
}

.cs-approach--receipt-reader .cs-approach-subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #4a5565;
    text-align: center;
    margin: 0 0 49px 0;
    letter-spacing: -0.01em;
}

.cs-approach--receipt-reader .cs-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.cs-approach--receipt-reader .cs-approach-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cs-approach--receipt-reader .cs-approach-card-header {
    height: 194px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    position: relative;
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-1 {
    background: #1e3a5f;
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-1 .cs-approach-num {
    background: rgba(232, 92, 41, 0.95);
    color: #fff;
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-2 {
    background: linear-gradient(155deg, #6b21a8 0%, #9333ea 100%);
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-2 .cs-approach-num {
    background: rgba(147, 51, 234, 0.9);
    color: #fff;
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-3 {
    background: #15803d;
}

body.page-case-study-receipt-reader .cs-approach-card-header--qra-3 .cs-approach-num {
    background: rgba(34, 197, 94, 0.95);
    color: #fff;
}

.cs-approach--receipt-reader .cs-approach-header-graphic {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.cs-approach--receipt-reader .cs-approach-num {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.cs-approach--receipt-reader .cs-approach-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-height: 0;
}

.cs-approach--receipt-reader .cs-approach-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.cs-approach--receipt-reader .cs-approach-card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
    margin: 0;
}

.cs-approach--receipt-reader .cs-approach-impact {
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 4px;
}

.cs-approach--receipt-reader .cs-approach-impact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-approach--receipt-reader .cs-approach-impact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-1 {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-1 .cs-approach-impact-label {
    color: #1e3a5f;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-1 .cs-approach-impact-list li::before {
    background: #e85c29;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-2 {
    background: rgba(107, 33, 168, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.25);
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-2 .cs-approach-impact-label {
    color: #6b21a8;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-2 .cs-approach-impact-list li {
    color: #1f2937;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-2 .cs-approach-impact-list li::before {
    background: #9333ea;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-3 {
    background: rgba(21, 128, 61, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-3 .cs-approach-impact-label {
    color: #15803d;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-3 .cs-approach-impact-list li {
    color: #1f2937;
}

body.page-case-study-receipt-reader .cs-approach-impact--qra-3 .cs-approach-impact-list li::before {
    background: #22c55e;
}

.cs-approach--receipt-reader .cs-approach-impact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cs-approach--receipt-reader .cs-approach-impact-list li {
    font-size: 14px;
    line-height: 1.45;
    color: #1f2937;
    padding-left: 18px;
    position: relative;
}

.cs-approach--receipt-reader .cs-approach-impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cs-approach--receipt-reader .cs-approach-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    cursor: default;
    pointer-events: none;
    margin-top: auto;
    padding: 14px 24px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.02s ease;
}

.cs-approach--receipt-reader .cs-approach-cta:hover {
    color: #fff;
    transform: translateY(-1px);
}

.cs-approach--receipt-reader .cs-approach-cta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-1 {
    background: #1e3a5f;
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-1:hover {
    background: #152a47;
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-2 {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-2:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-3 {
    background: #15803d;
}

body.page-case-study-receipt-reader .cs-approach-cta--qra-3:hover {
    background: #166534;
}

@media (max-width: 1024px) {
    .cs-approach--receipt-reader .cs-approach-grid {
        grid-template-columns: 1fr;
    }

    .cs-approach--receipt-reader .cs-approach-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .cs-approach--receipt-reader.cs-approach {
        padding: 48px 20px;
    }

    .cs-approach--receipt-reader .cs-approach-title {
        font-size: 28px;
    }

    .cs-approach--receipt-reader .cs-approach-card-header {
        height: 160px;
    }

    .cs-approach--receipt-reader .cs-approach-card-body {
        padding: 28px 24px;
    }
}

/* Transformation That Delivered Real Results – dark section, left text + 2x2 cards, green values */
.cs-results--receipt-reader.cs-results {
    background: #0f172a;
    padding: 80px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-results--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-results--receipt-reader .cs-results-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cs-results--receipt-reader .cs-results-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-results--receipt-reader .cs-results-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.cs-results--receipt-reader .cs-results-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cs-results--receipt-reader .cs-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cs-results--receipt-reader .cs-results-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cs-results--receipt-reader .cs-results-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.cs-results--receipt-reader .cs-results-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .cs-results--receipt-reader .cs-results-container {
        grid-template-columns: 1fr;
    }

    .cs-results--receipt-reader .cs-results-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .cs-results--receipt-reader.cs-results {
        padding: 48px 20px;
    }

    .cs-results--receipt-reader .cs-results-title {
        font-size: 26px;
    }

    .cs-results--receipt-reader .cs-results-grid {
        grid-template-columns: 1fr;
    }

    .cs-results--receipt-reader .cs-results-card {
        padding: 28px 24px;
    }

    .cs-results--receipt-reader .cs-results-value {
        font-size: 28px;
    }
}

/* Technology Stack & How We Eliminated Financial Data Risks – light grey bg, two white cards */
.cs-stack-risk--receipt-reader.cs-stack-risk {
    background: #f3f4f6;
    padding: 80px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-stack-risk--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cs-stack-risk--receipt-reader .cs-stack-risk-card-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon--orange {
    background: #e85d2a;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon--orange .cs-stack-risk-icon-img {
    filter: brightness(0) invert(1);
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon--green {
    background: #00c950;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-icon-img--white {
    filter: brightness(0) invert(1);
}

.cs-stack-risk--receipt-reader .cs-stack-risk-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin: 8px 0 0 0;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6b7280;
    text-transform: uppercase;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-tag {
    display: inline-block;
    background: #e5e7eb;
    color: #1f2937;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-compliance {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1f2937;
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-compliance-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.cs-stack-risk--receipt-reader .cs-stack-risk-item-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 1024px) {
    .cs-stack-risk--receipt-reader .cs-stack-risk-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cs-stack-risk--receipt-reader.cs-stack-risk {
        padding: 48px 20px;
    }

    .cs-stack-risk--receipt-reader .cs-stack-risk-card {
        padding: 28px 24px;
    }

    .cs-stack-risk--receipt-reader .cs-stack-risk-title {
        font-size: 20px;
    }

    .cs-stack-risk--receipt-reader .cs-stack-risk-tag {
        font-size: 13px;
        padding: 5px 12px;
    }
}

/* Who This Is For & Strategic Takeaways – dark section, orange underlines, left items with title+desc */
.cs-audience--receipt-reader.cs-audience {
    background: #0f172a;
    padding: 80px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-audience--receipt-reader .container {
    max-width: 1440px;
    margin: 0 auto;
}

.cs-audience--receipt-reader .cs-audience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 24px 48px;
    align-items: stretch;
}

.cs-audience--receipt-reader .cs-audience-heading--left {
    grid-column: 1;
    grid-row: 1;
}

.cs-audience--receipt-reader .cs-audience-heading--right {
    grid-column: 2;
    grid-row: 1;
}

.cs-audience--receipt-reader .cs-audience-list {
    grid-column: 1;
    grid-row: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-audience--receipt-reader .cs-audience-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #1e293b;
    border-radius: 10px;
    padding: 18px 20px;
}

.cs-audience--receipt-reader .cs-audience-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 93, 42, 0.15);
}

.cs-audience--receipt-reader .cs-audience-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

body.page-case-study-receipt-reader .cs-audience--receipt-reader .cs-audience-icon-wrap img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1200%) hue-rotate(350deg);
}

.cs-audience--receipt-reader .cs-audience-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cs-audience--receipt-reader .cs-audience-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    display: block;
}

.cs-audience--receipt-reader .cs-audience-item-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.cs-audience--receipt-reader .cs-audience-heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #e85d2a;
    width: fit-content;
}

.cs-audience--receipt-reader .cs-takeaways-container {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(30, 41, 57, 0.8) 0%, rgba(30, 41, 57, 0.4) 100%);
    border-radius: 12px;
    padding: 28px 24px;
    min-height: 0;
}

.cs-audience--receipt-reader .cs-takeaways-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cs-audience--receipt-reader .cs-takeaway-card {
    background: #000000;
    border-radius: 10px;
    padding: 24px;
}

.cs-audience--receipt-reader .cs-takeaway-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 93, 42, 0.15);
    margin-bottom: 14px;
}

.cs-audience--receipt-reader .cs-takeaway-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

body.page-case-study-receipt-reader .cs-audience--receipt-reader .cs-takeaway-icon-wrap img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1200%) hue-rotate(350deg);
}

.cs-audience--receipt-reader .cs-takeaway-title {
    font-size: 17px;
    font-weight: 700;
    color: #e85d2a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cs-audience--receipt-reader .cs-takeaway-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1024px) {
    .cs-audience--receipt-reader .cs-audience-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
    }

    .cs-audience--receipt-reader .cs-audience-heading--left {
        grid-column: 1;
        grid-row: 1;
    }

    .cs-audience--receipt-reader .cs-audience-heading--right {
        grid-column: 1;
        grid-row: 3;
    }

    .cs-audience--receipt-reader .cs-audience-list {
        grid-column: 1;
        grid-row: 2;
    }

    .cs-audience--receipt-reader .cs-takeaways-container {
        grid-column: 1;
        grid-row: 4;
    }
}

@media (max-width: 600px) {
    .cs-audience--receipt-reader.cs-audience {
        padding: 48px 20px;
    }

    .cs-audience--receipt-reader .cs-audience-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cs-audience--receipt-reader .cs-takeaways-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cs-audience--receipt-reader .cs-audience-item,
    .cs-audience--receipt-reader .cs-takeaway-card {
        padding: 28px 24px;
    }
}

/* CTA: Ready to Digitize Receipt Management – orange bg, white text, single button, benefits line */
.cs-cta-final--receipt-reader.cs-cta-final {
    background: #e85d2a;
    padding: 72px 6%;
    font-family: 'Inter', sans-serif;
}

.cs-cta-final--receipt-reader .cs-cta-final-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cs-cta-final--receipt-reader .cs-cta-final-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.cs-cta-final--receipt-reader .cs-cta-final-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
}

.cs-cta-final--receipt-reader .cs-cta-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
}

.cs-cta-final--receipt-reader .cs-cta-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.cs-cta-final--receipt-reader .cs-cta-final-btn--white {
    background: #ffffff;
    color: #333333;
}

.cs-cta-final--receipt-reader .cs-cta-final-btn:hover {
    opacity: 0.95;
}

.cs-cta-final--receipt-reader .cs-cta-final-benefits {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .cs-cta-final--receipt-reader.cs-cta-final {
        padding: 48px 20px;
    }

    .cs-cta-final--receipt-reader .cs-cta-final-title {
        font-size: 26px;
    }
}

/* Mobile: same horizontal padding as Volvo/index (6%) so card width matches other pages */
@media (max-width: 768px) {
    .page-case-study-receipt-reader .cs-highlights--receipt-reader,
    .page-case-study-receipt-reader .cs-bottleneck--receipt-reader,
    .page-case-study-receipt-reader .cs-evolution--receipt-reader,
    .page-case-study-receipt-reader .cs-roadmap--receipt-reader,
    .page-case-study-receipt-reader .cs-approach--receipt-reader,
    .page-case-study-receipt-reader .cs-results--receipt-reader,
    .page-case-study-receipt-reader .cs-stack-risk--receipt-reader,
    .page-case-study-receipt-reader .cs-audience--receipt-reader,
    .page-case-study-receipt-reader .cs-cta-final--receipt-reader {
        padding-left: 6%;
        padding-right: 6%;
    }

    .page-case-study-receipt-reader .cs-hero-container {
        padding-left: var(--container-padding, 36px);
        padding-right: var(--container-padding, 36px);
    }

    .page-case-study-receipt-reader .cs-highlights--receipt-reader .container,
    .page-case-study-receipt-reader .cs-bottleneck--receipt-reader .container,
    .page-case-study-receipt-reader .cs-evolution--receipt-reader .container,
    .page-case-study-receipt-reader .cs-roadmap--receipt-reader .container,
    .page-case-study-receipt-reader .cs-approach--receipt-reader .container,
    .page-case-study-receipt-reader .cs-results--receipt-reader .container,
    .page-case-study-receipt-reader .cs-stack-risk--receipt-reader .container,
    .page-case-study-receipt-reader .cs-audience--receipt-reader .container,
    .page-case-study-receipt-reader .cs-cta-final--receipt-reader .container {
        padding-left: 0;
        padding-right: 0;
    }

    .cs-hero {
        min-height: 600px;
    }

    .cs-hero-bg {
        background-size: cover;
        background-position: center;
    }

    .page-case-study-receipt-reader .cs-hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.58) 100%);
    }

    .cs-hero-container {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .cs-hero-logo-circle {
        width: 88px;
        height: 88px;
        margin-bottom: 16px;
    }

    .cs-hero-logo {
        width: 56px;
    }

    .cs-hero-title {
        font-size: 26px;
    }

    .cs-hero-desc {
        font-size: 15px;
    }
}
