/* ===== Raqmiat case studies — listing + detail styling
   Aligned with the site's design language: page-hero, brand blues, rounded cards,
   soft shadows, gradient accents. */

:root {
    --cs-primary: #002B5C;
    --cs-primary-soft: #001E40;
    --cs-accent: #0072B5;
    --cs-cyan: #0FCFFF;
    --cs-ink: #1a1a1a;
    --cs-muted: #5a6878;
    --cs-soft: #f5f8fc;
    --cs-border: rgba(0, 43, 92, 0.08);
}

/* ===== LISTING PAGE ===== */

.cs-list-section {
    background: #fff;
    padding: 70px 0 90px;
}
.cs-list-section .section-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 114, 181, 0.08);
    color: var(--cs-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}
.cs-list-section h2.section-title {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: var(--cs-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.cs-list-section p.section-sub {
    color: var(--cs-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 44px;
    line-height: 1.6;
}

/* Featured (first) card */
.cs-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px -18px rgba(0, 43, 92, 0.15);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
    margin-bottom: 50px;
}
.cs-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(0, 43, 92, 0.25);
    color: inherit;
}
.cs-featured .cs-featured-visual {
    position: relative;
    background: linear-gradient(135deg, #0F1B2D 0%, #002B5C 60%, #0072B5 100%);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #fff;
    overflow: hidden;
}
.cs-featured .cs-featured-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.7;
}
.cs-featured .cs-featured-visual .cs-mark {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cs-featured .cs-featured-visual .cs-mark .pill {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #BFE3FF;
}
.cs-featured .cs-featured-visual .cs-mark h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: -0.02em;
}
.cs-featured .cs-featured-visual .cs-mark .meta-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.cs-featured .cs-featured-visual .cs-mark .meta-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
}
.cs-featured .cs-featured-body {
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.cs-featured .cs-featured-body .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(90deg, #0072B5, #0FCFFF);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    width: max-content;
}
.cs-featured .cs-featured-body h2.title {
    font-size: 26px;
    font-weight: 700;
    color: var(--cs-primary);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.cs-featured .cs-featured-body .excerpt {
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
}
.cs-featured .cs-featured-body .cs-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cs-accent);
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .cs-featured { grid-template-columns: 1fr; }
    .cs-featured .cs-featured-visual { min-height: 220px; padding: 30px 20px; }
    .cs-featured .cs-featured-visual .cs-mark h3 { font-size: 28px; }
    .cs-featured .cs-featured-body { padding: 28px; }
}

/* Grid card */
.cs-card {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 24px -16px rgba(0, 43, 92, 0.12);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -20px rgba(0, 43, 92, 0.22);
    border-color: rgba(0, 114, 181, 0.25);
    color: inherit;
}
.cs-card .cs-card-visual {
    position: relative;
    background: linear-gradient(135deg, #0F1B2D 0%, #002B5C 60%, #0072B5 100%);
    padding: 28px 24px;
    color: #fff;
    overflow: hidden;
}
.cs-card .cs-card-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.7;
}
.cs-card .cs-card-visual > * { position: relative; z-index: 1; }
.cs-card .cs-card-visual .industry-pill {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #BFE3FF;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 12px;
}
.cs-card .cs-card-visual h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.cs-card .cs-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cs-card .cs-card-body .excerpt {
    color: #4a5568;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.cs-card .cs-card-body .meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.cs-card .cs-card-body .meta-tags span {
    font-size: 11.5px;
    color: var(--cs-accent);
    background: rgba(0, 114, 181, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.cs-card .cs-card-body .cs-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cs-accent);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}
.cs-card:hover .cs-read i { transform: translateX(3px); }
.cs-card .cs-read i { transition: transform .2s; }

/* ===== CTA BAND (shared by listing + detail) ===== */
.cs-cta-band {
    background: linear-gradient(135deg, #002B5C 0%, #0072B5 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cs-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.cs-cta-band > .container { position: relative; }
.cs-cta-band h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    border: 0;
    padding: 0;
}
.cs-cta-band p { color: rgba(255, 255, 255, 0.86); margin-bottom: 22px; font-size: 15.5px; }
.cs-cta-band .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #fff;
    color: var(--cs-primary);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, background .2s, color .2s;
}
.cs-cta-band .btn-cta:hover {
    background: var(--cs-cyan);
    color: var(--cs-primary);
    transform: translateY(-2px);
}

/* ===== DETAIL PAGE ===== */

.cs-detail-meta-bar {
    background: #fff;
    border-bottom: 1px solid var(--cs-border);
    padding: 26px 0;
}
.cs-detail-meta-bar .row { align-items: center; }
.cs-detail-meta-bar .meta-pill {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cs-detail-meta-bar .meta-pill .lbl {
    font-size: 11px;
    color: var(--cs-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.cs-detail-meta-bar .meta-pill .val {
    font-size: 15px;
    color: var(--cs-primary);
    font-weight: 700;
}

.cs-section {
    padding: 64px 0;
    background: #fff;
}
.cs-section.alt { background: var(--cs-soft); }
.cs-section .section-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 114, 181, 0.10);
    color: var(--cs-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}
.cs-section h2.cs-heading {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--cs-primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.cs-section p.lead-copy {
    color: #2d3748;
    line-height: 1.7;
    font-size: 16px;
    max-width: 880px;
}
.cs-section h3.cs-sub-heading {
    font-size: 19px;
    color: var(--cs-primary);
    margin: 28px 0 16px;
    font-weight: 700;
}

/* Snapshot table */
.cs-snapshot {
    display: grid;
    grid-template-columns: 220px 1fr;
    border: 1px solid var(--cs-border);
    border-radius: 14px;
    overflow: hidden;
    max-width: 880px;
    box-shadow: 0 10px 24px -18px rgba(0, 43, 92, 0.15);
}
.cs-snapshot .label,
.cs-snapshot .val {
    padding: 14px 18px;
    font-size: 14.5px;
    border-bottom: 1px solid #e9eef5;
}
.cs-snapshot .label {
    background: var(--cs-primary);
    color: #fff;
    font-weight: 600;
}
.cs-snapshot .val {
    background: #fff;
    color: #2d3748;
}
.cs-snapshot > div:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) {
    .cs-snapshot { grid-template-columns: 140px 1fr; }
    .cs-snapshot .label, .cs-snapshot .val { padding: 12px 14px; font-size: 13.5px; }
}

/* Pain point list */
.cs-pain-list, .cs-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
}
.cs-pain-list li, .cs-outcomes-list li {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-left: 4px solid var(--cs-accent);
    border-radius: 12px;
    padding: 16px 18px;
    line-height: 1.6;
    box-shadow: 0 6px 16px -12px rgba(0, 43, 92, 0.18);
}
.cs-pain-list li strong, .cs-outcomes-list li strong {
    color: var(--cs-primary);
    font-weight: 700;
}
.cs-section.alt .cs-pain-list li,
.cs-section.alt .cs-outcomes-list li { background: #fff; }

/* In Their Words callout */
.cs-itw {
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.30);
    border-left: 4px solid #f59e0b;
    padding: 24px 26px;
    border-radius: 14px;
    margin-top: 26px;
    max-width: 880px;
}
.cs-itw .label {
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cs-itw p {
    font-style: italic;
    margin-bottom: 10px;
    color: #44320a;
    font-size: 15.5px;
    line-height: 1.65;
}
.cs-itw cite {
    color: #92722b;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

/* Modules implemented */
.cs-modules { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.cs-module-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border: 1px solid var(--cs-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px -16px rgba(0, 43, 92, 0.15);
}
.cs-module-name {
    background: linear-gradient(180deg, var(--cs-primary) 0%, var(--cs-primary-soft) 100%);
    color: #fff;
    padding: 22px 22px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
}
.cs-module-name::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0FCFFF, #BFE3FF);
}
.cs-module-list {
    padding: 18px 22px 18px 38px;
    margin: 0;
    list-style: disc;
}
.cs-module-list li {
    line-height: 1.65;
    margin-bottom: 6px;
    color: #2d3748;
}
.cs-module-list li::marker { color: var(--cs-accent); }
@media (max-width: 760px) {
    .cs-module-row { grid-template-columns: 1fr; }
    .cs-module-name::before { width: 100%; height: 3px; bottom: auto; }
}

/* Customizations / Worked-Well bullet list */
.cs-bullet-list { list-style: none; padding: 0; margin: 8px 0 0; }
.cs-bullet-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    line-height: 1.65;
    border-bottom: 1px dashed #e9eef5;
    color: #2d3748;
}
.cs-bullet-list li:last-child { border-bottom: 0; }
.cs-bullet-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 13px;
    color: var(--cs-accent);
    font-size: 13px;
    background: rgba(0, 114, 181, 0.10);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Phase table */
.cs-phase-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--cs-border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 18px;
    box-shadow: 0 10px 24px -18px rgba(0, 43, 92, 0.15);
}
.cs-phase-table th {
    background: linear-gradient(180deg, var(--cs-primary) 0%, var(--cs-primary-soft) 100%);
    color: #fff;
    padding: 14px 16px;
    font-size: 13px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.cs-phase-table td {
    background: #fff;
    padding: 14px 16px;
    font-size: 14.5px;
    border-bottom: 1px solid #e9eef5;
    vertical-align: top;
    color: #2d3748;
}
.cs-phase-table tr:last-child td { border-bottom: 0; }
.cs-phase-table tr td:first-child { font-weight: 700; color: var(--cs-primary); width: 220px; }
@media (max-width: 700px) {
    .cs-phase-table tr td:first-child { width: auto; }
    .cs-phase-table th, .cs-phase-table td { padding: 10px 12px; font-size: 13px; }
}

/* Metrics grid */
.cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 26px 0 10px;
}
.cs-metric {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 10px 24px -18px rgba(0, 43, 92, 0.15);
}
.cs-metric::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0072B5, #0FCFFF);
}
.cs-metric:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -18px rgba(0, 43, 92, 0.22); }
.cs-metric .num {
    font-size: 42px;
    font-weight: 800;
    color: var(--cs-primary);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.cs-metric .lbl {
    font-size: 13px;
    color: var(--cs-muted);
    margin-top: 8px;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .cs-metrics { grid-template-columns: repeat(2, 1fr); }
    .cs-metric { padding: 20px 14px; }
    .cs-metric .num { font-size: 32px; }
}

/* Testimonial */
.cs-testimonial-card {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 18px;
    padding: 34px 36px;
    position: relative;
    box-shadow: 0 14px 30px -20px rgba(0, 43, 92, 0.20);
    max-width: 880px;
}
.cs-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 14px; left: 24px;
    font-family: Georgia, serif;
    font-size: 72px;
    color: rgba(0, 114, 181, 0.12);
    line-height: 1;
}
.cs-testimonial-card p.quote {
    font-size: 18px;
    line-height: 1.65;
    font-style: italic;
    color: #2d3748;
    margin: 16px 0 22px;
    padding-left: 44px;
}
.cs-testimonial-card .who {
    font-weight: 700;
    color: var(--cs-primary);
    font-size: 15px;
    padding-left: 44px;
}
.cs-testimonial-card .role {
    font-size: 13px;
    color: var(--cs-muted);
    padding-left: 44px;
    margin-top: 2px;
}

/* Back link */
.cs-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #BFE3FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 18px;
    opacity: 0.9;
    transition: opacity .2s, transform .2s;
}
.cs-back-link:hover { opacity: 1; color: #fff; transform: translateX(-3px); }

/* Hero-specific overrides — case studies hero shares the .rq-page-hero base */
.rq-page-hero.cs-detail-hero { min-height: 420px; padding: 170px 0 70px; }
.rq-page-hero.cs-detail-hero .industry-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(15, 207, 255, 0.14);
    border: 1px solid rgba(15, 207, 255, 0.30);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #BFE3FF;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}
.rq-page-hero.cs-detail-hero .hero-quote {
    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 22px;
    max-width: 760px;
    backdrop-filter: blur(6px);
}
.rq-page-hero.cs-detail-hero .hero-quote i {
    color: #0FCFFF;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.rq-page-hero.cs-detail-hero .hero-quote .q {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 6px;
}
.rq-page-hero.cs-detail-hero .hero-quote cite {
    color: rgba(191, 227, 255, 0.85);
    font-size: 12.5px;
    font-style: normal;
    font-weight: 500;
}

/* ===== Lead-capture form (shared across listing + detail) ===== */
.cs-lead-form-section {
    padding: 70px 0 90px;
    background: var(--cs-soft);
    position: relative;
    overflow: hidden;
}
.cs-lead-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 114, 181, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.cs-lead-form-section > .container { position: relative; }
.cs-lead-form-wrap {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 50px -25px rgba(0, 43, 92, 0.22);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}
.cs-lead-form-side {
    background: linear-gradient(160deg, #002B5C 0%, #0072B5 100%);
    color: #fff;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}
.cs-lead-form-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.cs-lead-form-side > * { position: relative; }
.cs-lead-form-side .eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #BFE3FF;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cs-lead-form-side h2 {
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.cs-lead-form-side p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    font-size: 15px;
    margin: 0 0 22px;
}
.cs-lead-form-side .perks {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs-lead-form-side .perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}
.cs-lead-form-side .perks li i {
    color: #0FCFFF;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.cs-lead-form-body { padding: 44px 40px; }
.cs-lead-form-body .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}
.cs-lead-form-body .form-grid .full { grid-column: 1 / -1; }
.cs-lead-form-body .form-field { display: flex; flex-direction: column; gap: 6px; }
.cs-lead-form-body .form-field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--cs-primary);
    letter-spacing: 0.01em;
}
.cs-lead-form-body .form-field input,
.cs-lead-form-body .form-field select,
.cs-lead-form-body .form-field textarea {
    padding: 11px 14px;
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--cs-ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.cs-lead-form-body .form-field textarea { resize: vertical; min-height: 110px; }
.cs-lead-form-body .form-field input:focus,
.cs-lead-form-body .form-field select:focus,
.cs-lead-form-body .form-field textarea:focus {
    border-color: var(--cs-accent);
    box-shadow: 0 0 0 3px rgba(0, 114, 181, 0.12);
}
.cs-lead-form-body .form-field input::placeholder,
.cs-lead-form-body .form-field textarea::placeholder { color: #9aa5b3; }
.cs-lead-form-body .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--cs-muted);
    line-height: 1.5;
}
.cs-lead-form-body .consent input { margin-top: 3px; accent-color: var(--cs-accent); }
.cs-lead-form-body .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.cs-lead-form-body .submit-row .meta {
    font-size: 12.5px;
    color: var(--cs-muted);
}
.cs-lead-form-body .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(90deg, #0072B5, #0FCFFF);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, filter .2s;
    box-shadow: 0 10px 24px -10px rgba(0, 114, 181, 0.45);
}
.cs-lead-form-body .btn-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.cs-lead-form-body .form-success {
    display: none;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #047857;
    font-size: 14px;
    margin-top: 14px;
}
.cs-lead-form-body .form-success.show { display: block; }

@media (max-width: 900px) {
    .cs-lead-form-wrap { grid-template-columns: 1fr; }
    .cs-lead-form-side, .cs-lead-form-body { padding: 32px 26px; }
    .cs-lead-form-body .form-grid { grid-template-columns: 1fr; }
}

/* ===== Online logos ===== */
.cs-zoho-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    backdrop-filter: blur(6px);
}
.cs-zoho-badge img { height: 22px; width: auto; display: block; }
.cs-zoho-badge:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* Featured + grid card: Zoho product logo strip */
.cs-card-visual .product-logos,
.cs-featured-visual .cs-mark .product-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.cs-card-visual .product-logos img,
.cs-featured-visual .cs-mark .product-logos img {
    height: 26px;
    width: auto;
    background: #fff;
    padding: 4px 6px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Modules section: small product logo next to module name */
.cs-module-name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs-module-name img.module-logo {
    height: 22px;
    width: auto;
    background: #fff;
    padding: 3px 5px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Trusted-by strip on the listing page */
.cs-trusted-strip {
    background: #fff;
    border-top: 1px solid var(--cs-border);
    border-bottom: 1px solid var(--cs-border);
    padding: 28px 0;
}
.cs-trusted-strip .label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--cs-muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
}
.cs-trusted-strip .logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 40px;
    opacity: 0.85;
}
.cs-trusted-strip .logos img {
    height: 38px;
    width: auto;
    filter: grayscale(0.2);
    transition: filter .2s, transform .2s;
}
.cs-trusted-strip .logos img:hover { filter: none; transform: scale(1.05); }
@media (max-width: 600px) {
    .cs-trusted-strip .logos { gap: 18px 26px; }
    .cs-trusted-strip .logos img { height: 28px; }
}
