p:empty {
    display: none;
}




    /* Case Study CSS */
    /* Title above banner */
    .cs-title-bar {
      background: #fff;
      padding: 36px 0 28px;
    }
    .cs-title-bar__h1 {
      font-size: 32px;
      font-weight: 800;
      line-height: 1.2;
      color: #0f172a;
      letter-spacing: -0.5px;
      margin: 0;
    }
.container nav.wds-breadcrumb .container {
    padding-left: 0px;
    margin-left: 0px;
    margin-bottom: 13px;
}

    /* Top banner */
    .cs-banner {
      width: 100%;
      display: block;
      line-height: 0;
    }
    .cs-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Page container */
    .cs-wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .cs-section--off .cs-wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* ---- Overview section ---- */
    .cs-overview {
      padding: 60px 0 0;
      background: #fff;
      margin: 0 0 56px 0;
    }
    .cs-overview__grid {
      display: grid;
      grid-template-columns: 5fr 12fr;
      gap: 64px;
      align-items: start;
    }
    .cs-overview__sidebar {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: sticky;
      top: 100px;
    }
    .cs-overview__prose p {
      font-size: 17px;
      line-height: 28px;
      color: #475569;
      margin: 0 0 18px;
    }
    .cs-overview__prose p:last-child { margin-bottom: 0; }

    /* Chipset blocks */
    .cs-chipset {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px;
    }
    .cs-chipset + .cs-chipset { margin-top: 16px; }
    .cs-chipset__label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #94a3b8;
      margin: 0 0 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cs-chipset__label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e2e8f0;
    }
    .cs-chipset__list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .cs-chip {
      font-size: 11px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 13px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      background: #fff;
      border: 1px solid #e2e8f0;
      color: #475569;
      transition: all .25s cubic-bezier(.22,1,.36,1);
    }
    .cs-chip:hover { transform: translateY(-1px); border-color: #0086c7; color: #0086c7; }
    .cs-chip--blue { background: rgba(0,134,199,.08); border-color: rgba(0,134,199,.2); color: #0086c7; }
    .cs-chip--green { background: rgba(22,163,74,.08); border-color: rgba(22,163,74,.2); color: #16a34a; }
    .cs-chip--purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.2); color: #7c3aed; }
    .cs-chip--orange { background: rgba(234,88,12,.08); border-color: rgba(234,88,12,.2); color: #ea580c; }

    /* Full-width image below overview grid */
    .cs-overview__img-full {
      width: 100%;
      margin-top: 56px;
      line-height: 0;
    }
    .cs-overview__img-full img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ---- Section heading shared ---- */
    .cs-section ul{
      list-style: disc;
      padding: 0 0 0 18px;
    }
    .cs-section ul li{
      margin: 0 0 5px 0;
      font-size: 17px;
      line-height: 28px;
      color: #475569;
      margin: 0 0 20px;
    }
    .cs-section {
      margin: 56px 0;
    }
    .cs-section--off {
      background: #f8fafc;
      padding: 56px 0;
      margin: 0;
    }
    .cs-section--dark {
      background: #0b1929;
    }
    .cs-section__eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #0086c7;
      margin: 0 0 12px;
      display: block;
    }
    .cs-section__h2 {
      font-size: 34px;
      font-weight: 800;
      line-height: 1.2;
      color: #0f172a;
      letter-spacing: -.5px;
      margin: 0 0 16px;
    }
    .cs-section__lead {
      font-size: 17px;
      line-height: 28px;
      color: #475569;
      margin: 0 0 40px;
      max-width: 720px;
    }

    /* ---- Approach / prose body ---- */
    .cs-approach__body p {
      font-size: 17px;
      line-height: 28px;
      color: #475569;
      margin: 0 0 20px;
    }
    .cs-approach__body p:last-child { margin-bottom: 0; }

    /* ---- Key Metrics ---- */
    .cs-metrics__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .cs-metric-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 20px 28px;
      text-align: center;
      transition: box-shadow .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }
    .cs-metric-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0086c7, #3a9ad8);
      opacity: 0;
      transition: opacity .3s;
    }
    .cs-metric-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -8px rgba(0,0,0,.1); }
    .cs-metric-card:hover::before { opacity: 1; }
    .cs-metric-card__icon {
      width: 52px;
      height: 52px;
      object-fit: contain;
      margin: 0 auto 16px;
      display: block;
    }
    .cs-metric-card__num {
      font-size: 44px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #16a34a, #22c55e);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      margin-bottom: 10px;
    }
    .cs-metric-card__label {
      font-size: 14px;
      font-weight: 500;
      color: #475569;
      line-height: 1.45;
    }

    /* ---- Challenges ---- */
    .cs-challenges__list {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-top: 40px;
    }
    .cs-challenge-item {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 36px 40px;
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 28px;
      align-items: start;
    }
    .cs-challenge-item:nth-child(even) { background: #f8fafc; }
    .cs-challenge-item__num {
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(90deg, #0086c7, #3a9ad8);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .cs-challenge-item__title {
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.35;
      margin: 0 0 14px;
    }
    .cs-challenge-item__body p {
      font-size: 16px;
      line-height: 1.65;
      color: #475569;
      margin: 0 0 14px;
    }
    .cs-challenge-item__body p:last-child { margin-bottom: 0; }

    /* ---- Solutions ---- */
    .cs-solutions__list {
      display: flex;
      flex-direction: column;
      gap: 56px;
      margin-top: 40px;
    }
    .cs-solution-item {
      display: grid;
      gap: 40px;
    }
    .cs-solution-item__header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .cs-solution-item__num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(90deg, #0086c7, #3a9ad8);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cs-solution-item__title {
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }
    .cs-solution-item__body p {
      font-size: 16px;
      line-height: 1.65;
      color: #475569;
      margin: 0 0 16px;
    }
    .cs-solution-item__body p:last-child { margin-bottom: 0; }
    .cs-solution-item__imgs {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }
    .cs-solution-item__imgs--1 { grid-template-columns: 1fr; }
    .cs-solution-item__imgs--2 { grid-template-columns: 1fr 1fr; }
    .cs-solution-item__imgs--3 { grid-template-columns: 1fr 1fr 1fr; }
    .cs-solution-img {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }
    .cs-solution-img img { width: 100%; height: auto; display: block; }
    .cs-solution-divider {
      border: none;
      border-top: 1px solid #e2e8f0;
      margin: 0;
    }

    /* ---- Outcomes (title + body cards) ---- */
    .cs-outcomes__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .cs-outcome-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px;
      transition: box-shadow .3s, transform .3s;
    }
    .cs-outcome-card--full { grid-column: 1 / -1; }
    .cs-outcome-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -8px rgba(0,0,0,.1); }
    .cs-outcome-card__metric {
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(135deg, #16a34a, #22c55e);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      margin-bottom: 10px;
    }
    .cs-outcome-card__title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 12px;
      line-height: 1.35;
    }
    .cs-outcome-card__body {
      font-size: 15px;
      color: #475569;
      line-height: 1.65;
    }

    /* ---- Conclusion ---- */
    .cs-conclusion p {
      font-size: 17px;
      line-height: 28px;
      color: #475569;
      margin: 0 0 20px;
    }
    .cs-conclusion p:last-child { margin-bottom: 0; }
    .cs-pullquote {
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      color: #0f172a;
      line-height: 1.4;
      border-left: 4px solid #0086c7;
      padding: 6px 0 6px 24px;
      margin: 32px 0;
    }

    /* ---- Bottom Banner ---- */
    .cs-bottom-banner {
      position: relative;
      min-height: 320px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .cs-bottom-banner__bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .cs-bottom-banner__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .cs-bottom-banner__overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: rgba(11,25,41,.78);
    }
    .cs-bottom-banner__inner {
      position: relative;
      z-index: 3;
      max-width: 1200px;
      margin: 0 auto;
      padding: 72px 40px;
      text-align: center;
    }
    .cs-bottom-banner__inner h2 {
      font-size: 36px;
      font-weight: 800;
      color: #fff;
      margin: 0 0 14px;
      letter-spacing: -.5px;
    }
    .cs-bottom-banner__inner p {
      font-size: 17px;
      color: rgba(255,255,255,.8);
      margin: 0 auto 28px;
      max-width: 1200px;
      line-height: 1.6;
    }
    .cs-cta-row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cs-btn-primary {
      display: inline-flex;
      align-items: center;
      height: 52px;
      padding: 0 28px;
      background: linear-gradient(90deg, #0086c7, #3a9ad8);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      transition: all .3s;
    }
    .cs-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(0,134,199,.4); }
    .cs-btn-ghost {
      display: inline-flex;
      align-items: center;
      height: 52px;
      padding: 0 28px;
      border: 1.5px solid rgba(255,255,255,.7);
      color: #fff;
      background: transparent;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      transition: all .3s;
    }
    .cs-btn-ghost:hover { background: #fff; color: #0f172a; }

    /* Scroll reveal */
    [data-reveal2] { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
    [data-reveal2].revealed { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      [data-reveal2] { opacity: 1; transform: none; transition: none; }
    }
    .casestudy-template-default .page-hero{padding: 100px 0;}
    .casestudy-template-default .page-hero .post-meta{display: none;}
    .casestudy-template-default .page-hero h1{font-size: 40px; margin: 10px 0 0 0;}
    .custom_web_design_quick_ans_sec h2{max-width: 900px; margin: 0 auto 25px;}


    .text_center_full{text-align: center;display: inline-block;width: 100%;}
    .mar_20top{margin-top: 20px;}
    



    
    :root {
      
      --cs-green-1: #16a34a;
      --cs-green-2: #22c55e;
    }

    /* --- Shared SVG-icon filter --- */
    .cs-icon-blue { filter: brightness(0) saturate(100%) invert(33%) sepia(82%) saturate(2070%) hue-rotate(177deg) brightness(95%) contrast(101%); }
    .cs-icon-white { filter: brightness(0) invert(1); }

    /* --- Page container --- */
    .cs-container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 40px; }

    /* --- Reusable green-gradient text (metrics only) --- */
    .cs-grad-green {
      background: linear-gradient(90deg, var(--cs-green-1) 0%, var(--cs-green-2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    /* --- Reusable blue-gradient text --- */
    .cs-grad-blue {
      background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    /* =========================================================
       §1 HERO — Dark mosaic background
       ========================================================= */
    .cs-hero {
      position: relative;
      background: var(--cs-dark-bg);
      min-height: 720px;
      padding: 80px 20px;
      overflow: hidden;
      color: #fff;
    }
    .cs-mosaic {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 40px 0;
      z-index: 0;
    }
    .cs-mosaic-row {
      display: flex;
      gap: 16px;
      flex-wrap: nowrap;
      width: max-content;
      will-change: transform;
    }
    .cs-mosaic-row--1 { animation: cs-scrollX1 30s linear infinite; }
    .cs-mosaic-row--2 { animation: cs-scrollX2 45s linear infinite reverse; }
    .cs-mosaic-row--3 { animation: cs-scrollX3 35s linear infinite; }
    .cs-mosaic:hover .cs-mosaic-row { animation-play-state: paused; }

    @keyframes cs-scrollX1 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes cs-scrollX2 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes cs-scrollX3 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    .cs-mosaic-card {
      width: 240px;
      height: 160px;
      border-radius: 12px;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      position: relative;
      overflow: hidden;
    }
    .cs-mosaic-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .cs-mosaic-card--grad-1  { background: linear-gradient(135deg, #0f4c81 0%, #1a6eb5 100%); }
    .cs-mosaic-card--grad-2  { background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); }
    .cs-mosaic-card--grad-3  { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
    .cs-mosaic-card--grad-4  { background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%); }
    .cs-mosaic-card--grad-5  { background: linear-gradient(135deg, #0e7490 0%, #22d3ee 100%); }
    .cs-mosaic-card--grad-6  { background: linear-gradient(135deg, #be185d 0%, #f472b6 100%); }
    .cs-mosaic-card--grad-7  { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }
    .cs-mosaic-card--grad-8  { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); }
    .cs-mosaic-card--grad-9  { background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%); }
    .cs-mosaic-card--grad-10 { background: linear-gradient(135deg, #7f1d1d 0%, #ef4444 100%); }
    .cs-mosaic-card--grad-11 { background: linear-gradient(135deg, #164e63 0%, #06b6d4 100%); }
    .cs-mosaic-card--grad-12 { background: linear-gradient(135deg, #14532d 0%, #4ade80 100%); }

    .cs-hero__overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, rgba(11,25,41,0.55) 0%, rgba(11,25,41,0.92) 70%, rgba(11,25,41,1) 100%);
      z-index: 1;
    }

    .cs-100plus {
      position: absolute;
      top: 38%;
      right: 8%;
      font-size: 200px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -6px;
      opacity: 0;
      transform: rotate(-4deg) translateY(20px);
      z-index: 2;
      animation: cs-100plus-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
      pointer-events: none;
    }
    .cs-100plus span {
      background: linear-gradient(90deg, var(--cs-green-1) 0%, var(--cs-green-2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    @keyframes cs-100plus-in {
      to { opacity: 0.55; transform: rotate(-4deg) translateY(0); }
    }

    .cs-hero__content {
      position: relative;
      z-index: 3;
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 22px;
      align-items: center;
    }
    .cs-hero__eyebrow {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #94a3b8;
    }
    .cs-hero__h1 {
      font-size: 60px;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -1.5px;
      color: #e2e8f0;
    }
    .cs-hero__h1 .cs-hero-real { color: #fff; }
    .cs-hero__sub {
      font-size: 19px;
      line-height: 30px;
      font-weight: 400;
      color: #cbd5e1;
      max-width: 720px;
    }
    .cs-hero__ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 8px;
    }
    .cs-btn-ghost-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 28px;
      height: 52px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: #fff;
      background: transparent;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    }
    .cs-btn-ghost-dark:hover {
      background: rgba(255,255,255,0.08);
      border-color: #fff;
      transform: translateY(-1px);
    }
    .cs-hero__ministats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 12px;
      font-size: 14px;
      color: #94a3b8;
    }
    .cs-hero__ministats span { white-space: nowrap; }

    /* =========================================================
       §2 AEO Quick Answer Ribbon
       ========================================================= */
    .cs-aeo-ribbon {
      background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
      color: #fff;
      padding: 26px 40px;
      transition: padding 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      z-index: 50;
    }
    .cs-aeo-ribbon__inner {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 28px;
    }
    .cs-aeo-ribbon__label {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      background: rgba(255,255,255,0.16);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .cs-aeo-ribbon__text {
      font-size: 15px;
      line-height: 24px;
      color: #fff;
      font-weight: 500;
    }
    .cs-aeo-ribbon.is-pinned {
      position: fixed;
      top: 76px;
      left: 0;
      right: 0;
      padding: 14px 40px;
      box-shadow: 0 8px 24px rgba(0, 134, 199, 0.25);
    }
    .cs-aeo-ribbon.is-pinned .cs-aeo-ribbon__text {
      font-size: 13px;
      line-height: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* =========================================================
       §3 Intro Paragraph
       ========================================================= */
    .cs-intro {
      background: #fff;
      padding: 80px 20px;
    }
    .cs-intro__p {
      max-width:1200px;
      margin: 0 auto;
      
      text-align: center;
    }
    .cs-inline-link {
      position: relative;
      color: var(--brand-primary);
      font-weight: 600;
      text-decoration: none;
    }
    .cs-inline-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1.5px;
      background: var(--brand-primary);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.3s ease;
    }
    .cs-inline-link:hover::after { transform: scaleX(1); }

    /* =========================================================
       §4 Featured Engagements - Bento Grid
       ========================================================= */
    .cs-bento-section { background: var(--off-white); padding: 80px 20px; }
    .cs-bento-section__head {
      max-width: 880px;
      margin: 0 auto 60px;
      text-align: center;
      display: flex; 
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    .cs-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .cs-h2 {
      font-size: 44px;
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -1px;
      color: #0f172a;
    }
    .cs-section-lead {
      font-size: 18px;
      line-height: 28px;
      color: #475569;
    }

    .cs-bento {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(260px, auto);
      gap: 20px;
    }
    .cs-bento-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 16px rgba(15,23,42,0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: block;
      color: inherit;
    }
    .cs-bento-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    }
    .cs-bento-card--big {
      grid-column: span 6;
      grid-row: span 2;
      min-height: 540px;
      background:
        linear-gradient(135deg, rgba(0,134,199,0.55), rgba(58,154,216,0.55)),
        var(--cs-dark-bg);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
    }
    .cs-bento-card--big::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(34,197,94,0.18), transparent 55%);
      pointer-events: none;
    }
    .cs-bento-card--big .cs-bento-metric {
      font-size: 96px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -3px;
      margin-bottom: 12px;
      position: relative;
    }
    .cs-bento-card--big .cs-bento-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-bottom: 14px;
      position: relative;
    }
    .cs-bento-card--big .cs-bento-title {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.25;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
    }
    .cs-bento-card--big .cs-bento-cta {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .cs-bento-card--big:hover .cs-bento-cta { gap: 12px; }

    .cs-bento-card--small {
      grid-column: span 3;
      grid-row: span 1;
      min-height: 260px;
      display: flex;
      flex-direction: column;
    }
    .cs-bento-thumb {
      width: 100%;
      height: 120px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .cs-bento-thumb--code1     { background: linear-gradient(135deg, #16a34a, #0086c7); }
    .cs-bento-thumb--carenovex { background: linear-gradient(135deg, #6366f1, #a855f7); }
    .cs-bento-thumb--infiniti  { background: linear-gradient(135deg, #f59e0b, #f97316); }
    .cs-bento-thumb--fundraise { background: linear-gradient(135deg, #db2777, #f43f5e); }
    .cs-bento-thumb--surplus   { background: linear-gradient(135deg, #0ea5e9, #1e3a8a); }
    .cs-bento-card--small .cs-bento-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
    .cs-bento-card--small .cs-bento-metric {
      font-size: 32px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
    }
    .cs-bento-card--small .cs-bento-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #94a3b8;
    }
    .cs-bento-card--small .cs-bento-title {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.35;
    }

    .cs-bento-strip {
      grid-column: span 12;
      grid-row: span 1;
      min-height: 140px;
      display: grid;
      grid-template-columns: 220px 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 20px;
      background: #fff;
    }
    .cs-bento-strip .cs-bento-thumb {
      width: 220px;
      height: 110px;
      border-radius: 10px;
    }
    .cs-bento-strip__body { display: flex; flex-direction: column; gap: 6px; }
    .cs-bento-strip__label {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      background: #eef6fc;
      color: var(--brand-primary);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      align-self: flex-start;
    }
    .cs-bento-strip__title {
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }
    .cs-bento-strip__cta {
      color: var(--brand-primary);
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* =========================================================
       §5 By the Numbers - Diagonal Data Ribbon (DARK #2)
       ========================================================= */
    .cs-numbers {
      position: relative;
      background: var(--cs-dark-bg);
      padding: 100px 40px 120px;
      color: #fff;
      overflow: hidden;
    }
    .cs-numbers::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: 0.6;
      pointer-events: none;
    }
    .cs-numbers__head {
      max-width: 880px;
      margin: 0 auto 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .cs-numbers__head .cs-h2 { color: #fff; }
    .cs-numbers__head .cs-section-lead { color: #cbd5e1; }
    .cs-numbers__head .cs-eyebrow { color: #22c55e; }

    .cs-diagonal {
      position: relative;
      max-width: 1240px;
      margin: 0 auto;
      height: 480px;
      z-index: 2;
    }
    .cs-diagonal__svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .cs-stat-beat {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-width: 220px;
    }
    .cs-stat-beat--1 { top: 0;    left: 4%;  }
    .cs-stat-beat--2 { top: 20%;  left: 26%; }
    .cs-stat-beat--3 { top: 40%;  left: 48%; }
    .cs-stat-beat--4 { top: 60%;  left: 70%; }
    .cs-stat-beat--5 { top: 78%;  left: 4%;  }
    .cs-stat-number {
      font-size: 96px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -3px;
    }
    .cs-stat-label {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }
    .cs-stat-context {
      font-size: 13px;
      color: #94a3b8;
      line-height: 1.5;
    }
    .cs-numbers__footnote {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: center;
      font-style: italic;
      font-size: 14px;
      color: #94a3b8;
      position: relative;
      z-index: 2;
    }

    /* =========================================================
       §6 Browse All - Filter Rail + Masonry Grid
       ========================================================= */
    .cs-browse { background: var(--off-white); padding: 80px 20px; }
    .cs-browse__head {
      max-width: 880px;
      margin: 0 auto 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    .cs-filter-rail {
      position: sticky;
      top: 76px;
      z-index: 40;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      max-width: 1240px;
      margin: 0 auto 32px;
      padding: 14px 22px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 22px;
      box-shadow: 0 4px 14px rgba(15,23,42,0.05);
    }
    .cs-filter-facets {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .cs-filter-facet { position: relative; }
    .cs-filter-facet__trigger {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      background: #fff;
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
      cursor: pointer;
      transition: border-color 0.15s ease, background 0.15s ease;
    }
    .cs-filter-facet__trigger:hover { border-color: var(--brand-primary); }
    .cs-filter-facet.is-open .cs-filter-facet__trigger {
      border-color: var(--brand-primary);
      background: #eef6fc;
    }
    .cs-filter-facet__caret { font-size: 10px; }
    .cs-filter-facet__dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 260px;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 14px;
      box-shadow: 0 20px 40px rgba(15,23,42,0.12);
      flex-wrap: wrap;
      gap: 6px;
      z-index: 45;
    }
    .cs-filter-facet.is-open .cs-filter-facet__dropdown { display: flex; }
    .cs-filter-option-chip {
      padding: 6px 12px;
      border-radius: 999px;
      background: #f1f5f9;
      color: #334155;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .cs-filter-option-chip:hover { background: #e2e8f0; }
    .cs-filter-option-chip.is-active {
      background: var(--brand-primary);
      color: #fff;
    }
    .cs-filter-rail__count {
      font-size: 14px;
      color: #475569;
      font-weight: 500;
      white-space: nowrap;
    }
    .cs-filter-rail__count strong { color: #0f172a; font-weight: 700; }

    .cs-filter-active {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      max-width: 1240px;
      margin: 0 auto 24px;
      padding: 0 4px;
    }
    .cs-filter-active:empty { margin: 0 auto; }
    .cs-filter-active-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px 6px 12px;
      background: var(--brand-primary);
      color: #fff;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
    }
    .cs-filter-active-pill__x {
      width: 18px; height: 18px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.2);
      border-radius: 999px;
      cursor: pointer;
      font-size: 12px;
      line-height: 1;
    }

    .cs-case-grid {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: masonry;
      gap: 24px;
    }
    .cs-case-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      color: inherit;
    }
    .cs-case-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(15,23,42,0.10);
      border-color: var(--brand-primary);
    }
    .cs-case-card.is-hidden { display: none; }

    /* Pagination — cards beyond initial page are hidden until Load More clicked */
    .cs-case-card--paginated { display: none; }

    /* Reveal animation for newly-loaded cards */
    .cs-case-card.is-revealing {
      animation: csCardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes csCardReveal {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .cs-case-card.is-revealing { animation: none; }
    }

    /* Load More button styling */
    .cs-loadmore-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      font-weight: 600;
      border: 1.5px solid var(--brand-primary);
      color: var(--brand-primary);
      background: #fff;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.25s, color 0.25s, transform 0.25s;
    }
    .cs-loadmore-btn:hover { background: var(--brand-primary); color: #fff; transform: translateY(-1px); }
    .cs-loadmore-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .cs-loadmore-btn__count { font-weight: 500; opacity: 0.75; font-size: 14px; }
    .cs-loadmore-btn svg { transition: transform 0.3s; }
    .cs-loadmore-btn:hover svg { transform: translateY(2px); }

    /* Filter trigger — count badge when facet has active selections */
    .cs-filter-facet__trigger.has-active {
      background: rgba(0,134,199,0.08);
      border-color: var(--brand-primary);
      color: var(--brand-primary);
    }
    .cs-filter-facet__count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 20px;
      height: 20px;
      margin-left: 6px;
      padding: 0 6px;
      background: var(--brand-primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      border-radius: 10px;
      line-height: 1;
    }

    /* Clear-all link in active pills strip */
    .cs-filter-active__clear {
      margin-left: 4px;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-primary);
      background: transparent;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      transition: background 0.2s;
    }
    .cs-filter-active__clear:hover { background: rgba(0,134,199,0.08); text-decoration: underline; }
    .cs-case-card__thumb {
      width: 100%;
      aspect-ratio: 16 / 9;
      position: relative;
    }
    .cs-case-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
    .cs-case-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
    .cs-case-card__chip {
      padding: 3px 9px;
      background: #f1f5f9;
      color: #475569;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
    }
    .cs-case-card__client {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #94a3b8;
    }
    .cs-case-card__metric {
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
    }
    .cs-case-card__title {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.35;
    }
    .cs-case-card__cta {
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-primary);
      margin-top: 4px;
      display: inline-flex;
      gap: 6px;
      align-items: center;
    }

    /* Thumbnail gradient variations */
    .cs-thumb--1  { background: linear-gradient(135deg, #0086c7, #3a9ad8); }
    .cs-thumb--2  { background: linear-gradient(135deg, #16a34a, #22c55e); }
    .cs-thumb--3  { background: linear-gradient(135deg, #6366f1, #a855f7); }
    .cs-thumb--4  { background: linear-gradient(135deg, #f59e0b, #f97316); }
    .cs-thumb--5  { background: linear-gradient(135deg, #0ea5e9, #0086c7); }
    .cs-thumb--6  { background: linear-gradient(135deg, #db2777, #f43f5e); }
    .cs-thumb--7  { background: linear-gradient(135deg, #1e3a8a, #0ea5e9); }
    .cs-thumb--8  { background: linear-gradient(135deg, #4338ca, #7c3aed); }
    .cs-thumb--9  { background: linear-gradient(135deg, #0891b2, #06b6d4); }
    .cs-thumb--10 { background: linear-gradient(135deg, #059669, #0d9488); }
    .cs-thumb--11 { background: linear-gradient(135deg, #be123c, #db2777); }
    .cs-thumb--12 { background: linear-gradient(135deg, #b45309, #ca8a04); }

    /* Thumbnail image overlay — when present, covers the gradient backdrop.
       Missing/broken images are removed by JS so the gradient shows through. */
    .cs-case-card__thumb,
    .cs-bento-thumb {
      overflow: hidden;
    }
    .cs-case-card__thumb img,
    .cs-bento-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cs-case-card:hover .cs-case-card__thumb img,
    .cs-bento-card:hover .cs-bento-thumb img {
      transform: scale(1.06);
    }

    /* BIG bento card — optional background image layer sits beneath the
       existing radial overlay (::before) and content. Missing image = the
       existing 540px gradient hero treatment is what shows. */
    .cs-bento-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6) saturate(1.05);
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .cs-bento-card--big:hover .cs-bento-bg-img {
      transform: scale(1.04);
    }
    .cs-bento-card--big > .cs-bento-metric,
    .cs-bento-card--big > .cs-bento-eyebrow,
    .cs-bento-card--big > .cs-bento-title,
    .cs-bento-card--big > .cs-bento-cta {
      z-index: 2;
    }

    .cs-browse__loadmore {
      max-width: 1320px;
      margin: 48px auto 24px;
      text-align: center;
    }
    .cs-browse__midcta {
      max-width: 1320px;
      margin: 24px auto 0;
      text-align: center;
    }

    /* =========================================================
       §7 Methodology Spine
       ========================================================= */
    .cs-method { background: var(--white); padding: 80px 20px; }
    .cs-method__head {
      max-width: 1150px;
      margin: 0 auto 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    .cs-method__intro {
      font-size: 17px;
      color: #475569;
      line-height: 28px;
    }

    .cs-method-spine {
      position: relative;
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding: 40px 0;
    }
    .cs-method-spine__line {
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      height: 2px;
      pointer-events: none;
      z-index: 0;
    }
    .cs-method-step {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
      z-index: 2;
    }
    .cs-method-step__node {
      position: relative;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #cbd5e1;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .cs-method-step:hover .cs-method-step__node {
      border-color: var(--brand-primary);
      transform: scale(1.04);
    }
    .cs-method-step__node svg {
      width: 36px; height: 36px;
      stroke: var(--brand-primary);
      fill: none;
      stroke-width: 2;
    }
    .cs-method-step__badge {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
    }
    .cs-method-step__title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
    }
    .cs-method-step__teaser {
      max-width: 240px;
    }
    .cs-method-step__detail {
      width: 280px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(15,23,42,0.10);
      transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
      padding: 0 18px;
      font-size: 13px;
      line-height: 22px;
      color: #475569;
      text-align: left;
    }
    .cs-method-step:hover .cs-method-step__detail {
      max-height: 220px;
      opacity: 1;
      padding: 16px 18px;
    }
    .cs-method__closer {
      max-width: 880px;
      margin: 48px auto 0;
      text-align: center;
      font-size: 17px;
      line-height: 28px;
      color: #475569;
    }

    /* =========================================================
       §8 More Proof - Glass Cards
       ========================================================= */
    .cs-more-proof {
      background:#fff;
      padding: 80px 20px;
    }
    .cs-more-proof__head {
      max-width: 880px;
      margin: 0 auto 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    .cs-proof-grid {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .cs-proof-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      padding: 30px;
      border-radius: 16px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(226,232,240,0.8);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 6px 18px rgba(15,23,42,0.05);
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cs-proof-card:hover {
      transform: translateY(-4px);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 18px 36px rgba(15,23,42,0.10);
    }
    .cs-proof-card__icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(0,134,199,0.10), rgba(58,154,216,0.10));
    }
    .cs-proof-card__icon svg {
      width: 36px;
      height: 36px;
      stroke: var(--brand-primary);
      fill: none;
      stroke-width: 1.8;
    }
    .cs-proof-card__title {
      font-size: 19px;
      font-weight: 700;
      color: #0f172a;
    }
    .cs-proof-card__cta {
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-primary);
      display: inline-flex;
      gap: 6px;
      align-items: center;
    }

    /* =========================================================
       §9 FAQ - uses global .faq pattern, just wrapped
       ========================================================= */
    .cs-faq { background: var(--off-white);  }
    .cs-faq__head {
      max-width: 880px;
      margin: 0 auto 48px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }

    /* =========================================================
       §10 Closing CTA - Dark Asymmetric Echo (DARK #3)
       ========================================================= */
    .cs-closing-cta {
      position: relative;
      background: radial-gradient(ellipse at center, rgba(11,25,41,0.55) 0%, rgba(11,25,41,0.92) 70%, rgba(11,25,41,1) 100%);
      color: #fff;
      padding: 100px 40px;
      overflow: hidden;
    }
    .cs-closing-cta__mosaic {
      position: absolute;
      inset: 0;
      opacity: 1;
      overflow: hidden; 
      pointer-events: none;
    }
    .cs-closing-cta__mosaic .cs-mosaic {
      padding: 0;
    }
    .cs-closing-cta__overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, rgba(17,32,49,0.6) 0%, rgba(17,32,49,0.95) 80%);
      pointer-events: none;
    }
    .cs-closing-cta__inner {
      position: relative;
      z-index: 2;
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .cs-closing-cta__left { display: flex; flex-direction: column; gap: 24px; }
    .cs-closing-cta__h2 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      color: #fff;
    }
    .cs-accent {
      background: linear-gradient(90deg, var(--cs-green-1) 0%, var(--cs-green-2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }
    .cs-closing-cta__p {
      font-size: 17px;
      line-height: 28px;
      color: #cbd5e1;
    }
    .cs-closing-cta__ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .cs-closing-cta__risk {
      font-size: 13px;
      font-style: italic;
      color: #94a3b8;
      margin-top: 4px;
    }

    .cs-trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .cs-trust-mini-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .cs-trust-mini-card__num {
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
    }
    .cs-trust-mini-card__label {
      font-size: 13px;
      color: #fff;
      font-weight: 700;
    }
    .cs-trust-mini-card__ctx {
      font-size: 11px;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    .cs-closing-cta__footer-strip {
      position: relative;
      z-index: 2;
      max-width: 1320px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
      text-align: center;
    }
    .cs-badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 14px;
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s ease;
    }
    .cs-badge-row:hover { color: rgba(255,255,255,1); }
    .cs-badge-row span { white-space: nowrap; }
    .cs-phone-strip {
      font-size: 14px;
      color: #fff;
    }
    .cs-phone-strip a {
      color: #fff;
      font-weight: 600;
    }
    .cs-phone-strip a:hover { color: var(--brand-secondary); }
    .cs-nda-line {
      font-size: 13px;
      font-style: italic;
      color: #94a3b8;
    }

    /* =========================================================
       §11 Internal Link Footer Strip
       ========================================================= */
    .cs-internal-strip {
      background: #fff;
      padding: 30px 40px;
      border-top: 1px solid #e2e8f0;
    }
    .cs-internal-strip__inner {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 16px;
      font-size: 14px;
      color: #475569;
    }
    .cs-internal-strip a {
      font-weight: 500;
      color: #475569;
      transition: color 0.2s ease;
    }
    .cs-internal-strip a:hover { color: var(--brand-primary); text-decoration: underline; }
    .cs-internal-strip__sep { color: #cbd5e1; }

    /* =========================================================
       Reduced motion fallback
       ========================================================= */
    @media (prefers-reduced-motion: reduce) {
      .cs-mosaic-row { animation: none !important; }
      .cs-100plus { opacity: 0.45; animation: none !important; transform: rotate(-4deg); }
    }

    /* =========================================================
       Responsive (tablet)
       ========================================================= */
    @media (max-width: 1024px) {
      .cs-hero__h1 { font-size: 44px; }
      .cs-bento { grid-template-columns: repeat(6, 1fr); }
      .cs-bento-card--big { grid-column: span 6; grid-row: span 2; min-height: 420px; }
      .cs-bento-card--small { grid-column: span 3; }
      .cs-bento-strip { grid-column: span 6; grid-template-columns: 1fr; text-align: center; }
      .cs-bento-strip .cs-bento-thumb { width: 100%; }
      .cs-case-grid { grid-template-columns: repeat(2, 1fr); }
      .cs-proof-grid { grid-template-columns: repeat(2, 1fr); }
      .cs-method-spine { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .cs-closing-cta__inner { grid-template-columns: 1fr; gap: 48px; }
      .cs-diagonal { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
      .cs-stat-beat { position: static; max-width: none; }
      .cs-diagonal__svg { display: none; }
      .cs-stat-number { font-size: 64px; }
    }


/*case-studies*/
body .part-connection:before{
    background: url(/wp-content/uploads/2024/10/Parts-Connexion-Thumbnail.webp);
    background-repeat: no-repeat; background-size: cover; background-position: center;
}
body .infinite-casestudy span.cs-bento-thumb.cs-bento-thumb--infiniti{
    background: url(/wp-content/uploads/2025/12/Infinitihomecomfort_thumb_new.webp);
    background-repeat: no-repeat; background-size: cover; background-position: center;
}
body .cs-bento-thumb--code1{
    background: url(wp-content/uploads/2026/05/Code1Supply_case_study-top-banner-1320x700.webp);
    background-repeat: no-repeat; background-size: cover; background-position: center;
}
body span.cs-bento-thumb.cs-bento-thumb--carenovex{
    background: url(wp-content/uploads/2026/03/CareNovex-F.webp);
    background-repeat: no-repeat; background-size: cover; background-position: center;
}
body span.cs-bento-thumb.cs-bento-thumb--fundraise{
    background: url(/wp-content/uploads/2026/05/PetsLoveUstoo-top-banner-1320x700.webp);
    background-repeat: no-repeat; background-size: cover; background-position: center;
}
#quick-answer.cs-aeo-ribbon {
      background: linear-gradient(90deg, #0086c7 0%, #3a9ad8 100%);
      color: #fff;
      padding: 26px 40px;
      transition: padding 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      z-index: 50;
}
.cs-aeo-ribbon .cs-aeo-ribbon__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}
.cs-aeo-ribbon .cs-aeo-ribbon__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
body .cs-aeo-ribbon .cs-aeo-ribbon__text {
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
}
body .cs-aeo-ribbon.is-pinned {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  padding: 14px 40px;
  box-shadow: 0 8px 24px rgba(0, 134, 199, 0.25);
}
body .cs-aeo-ribbon.is-pinned .cs-aeo-ribbon__text {
  font-size: 13px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-bento-thumb{
    display: inline-block;
}
/**/
.logo_form h1,
.scam_targeting h1{
    font-size: 30px; line-height: 50px;
}
.logo_form_rt_box p,
.scam_targeting p{
    margin: 15px 0;
}
.scam_targeting h2,
.scam_targeting h3 {
    font-size: 30px;
    line-height: 38px;
}
.scam_targeting h1,
.scam_targeting h2 {
    font-weight: 800;
}
body .part-connection:after,
body span.cs-bento-thumb:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.cs-bento-strip .cs-bento-thumb.cs-bento-thumb--surplus{
    width: 230px;
    height: 200px;
}
.cs-bento-strip .cs-bento-thumb.cs-bento-thumb--surplus:after{
            background: url(/wp-content/uploads/2026/02/Surplus-F.png);
        background-size: contain;
        background-repeat: no-repeat;
}
span.cs-case-card__cta {
    position: absolute;
}
.cs-case-card__body {
    position: static;
}
a.cs-case-card {
    position: relative; padding: 0 0 40px;
}
span.cs-case-card__cta {
    position: absolute;
    bottom: 20px;
}
.cs-case-card__body {
    position: static;
}
a.cs-case-card {
    position: relative; padding: 0 0 40px;
}
span.cs-case-card__cta {
    position: absolute;
    bottom: 20px;
}
.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/**/

.csv3-aeo, .cs-aeo,body #quick-answer {
      background: #f1f5f9;
      color: #0f172a;
      padding: 32px 0;
    }
    .csv3-aeo__inner, .cs-aeo__inner {
      display: flex; align-items: flex-start; gap: 24px;
      width: 100%;
      max-width: 1320px; margin: 0 auto;
      padding: 0 20px;
    }
    .csv3-aeo__label, .cs-aeo__pill, .cs-aeo__eyebrow, .cs-aeo__label {
      flex: 0 0 auto;
      display: inline-flex; align-items: center;
      padding: 8px 14px;
      border: 1.5px solid #cfe1f2; border-radius: 999px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: #0086c7;
      background: #ffffff;
    }
    .csv3-aeo__text, .cs-aeo__text, .cs-aeo__body, .cs-aeo p {
      flex: 1 1 auto;
      font-size: 17px; line-height: 28px; font-weight: 400;
      color: #0f172a; margin: 0;
      max-width: none;
    }
    /* ---------------- §4 METRICS TILES ---------------- */
    .csv3-metrics {
      background: #ffffff;
      padding: 80px 20px;
    }
    /* Change 3 - stable transform-origin for any bar-style entrance animations */
    .csv3-metrics .csv3-chart__bar,
    .csv3-metrics .cs-chart__bar,
    .csv3-metrics .cs-number__bar { transform-origin: bottom center; will-change: transform; }
    .csv3-metrics__grid {
      max-width: 1320px; margin: 0 auto;
      padding: 0 40px;
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    }
    .csv3-metrics__h2 {
      font: 800 40px/48px 'Inter', sans-serif;
      letter-spacing: -0.5px;
      color: var(--csv3-text);
      margin: 0 auto 10px;
      max-width: 1320px;
      padding: 0 40px;
      text-align: center;
    }
    .csv3-metrics__eyebrow {
      font: 700 12px/1 'Inter', sans-serif;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #94a3b8;
      opacity: 0.85;
      margin: 0 0 16px;
      text-align: center;
    }
    .csv3-metrics .eyebrow{text-align: center;}
    @media (max-width: 768px) {
      .csv3-metrics__h2 { font-size: 28px; line-height: 36px; padding: 0 20px; margin-bottom: 28px; }
    }
    .csv3-tile {
      position: relative;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 24px;
      box-shadow: 0 1px 3px 0 rgba(0,0,0,0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      overflow: hidden;
    }
    .csv3-tile::before {
      content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
      background: #0086c7;
      transition: width 0.5s ease;
    }
    .csv3-tile:hover { transform: translateY(-4px); border-color: #cbd5e1; box-shadow: 0 16px 40px -8px rgba(0,0,0,0.12); }
    .csv3-tile:hover::before { width: 100%; }
    .csv3-tile__num {
      font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -1px;
      background:#0086c7;
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
      margin: 0 0 12px;
    }
    .csv3-tile__num-suffix {
      font: 700 14px/1 'Inter', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #475569;
      margin-left: 8px;
      vertical-align: middle;
      -webkit-text-fill-color: #475569;
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      opacity: 0.75;
    }
    .csv3-metrics__cta {
      text-align: center; margin-top: 48px;
    }

span.cs-bento-strip__cta {
    margin: 15px 0 0;
}
.cs-bento > p {
    display: none;
}
.csv3-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .csv3-reveal.is-visible { opacity: 1; transform: translateY(0); }
    .key_metrics_icon{margin-bottom: 15px;}
    .key_metrics_icon svg{width: auto; height: 45px;filter: grayscale(100%);}
    .cs-our-proof{
      font-size: 18px;
    line-height: 28px;
    color: #475569;
    text-align: center;
        margin: 0 0 30px;
    }
    .csv3-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    background: linear-gradient(90deg, #0086c7 0%, #3a9ad8 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.csv3-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(0, 134, 199, 0.4);
}
.contact-form textarea{
      margin: 15px 0 0;
}
.wds-breadcrumb{margin: 30px 0 0 0;}
.wds-breadcrumb .container{display: flex;align-items: center;justify-content: flex-start; column-gap: 5px;}
.wds-breadcrumb a,
.wds-breadcrumb span{font-size: 12px; color: #000;}
.wds-breadcrumb a:hover{color: #0086c7;}
.wds-breadcrumb span.sep svg{width: 15px; height: auto;}
.wds-breadcrumb span{display: flex;align-items: center;}
.slick-arrow{display: none !important;}
.slick-dots {
    position: absolute;
    bottom: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 4px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    opacity: 1;
    background: #000;
}
.slick-dots li button{
  font-size: 0;
}
.slick-dots li button:before,
.slick-dots li button:focus,
.slick-dots li button:focus:before {
    width: 40px;
    height: 4px;
    opacity: 1;
    background: #D1D1D1;
    display: inline-block;
    content: '';
}
.cs-approach__body.faq-list {max-width: 100%;}
.mobile_first_2col{display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px;}
.casestudy_viewall_btn{display: inline-block; text-align: center; margin-top: 40px; width: 100%;}
@media only screen and (max-width: 1199px){
  .casestudy-template-default .page-hero {
    padding: 40px 0;
}
.container nav.wds-breadcrumb .container{
  flex-wrap: wrap;
}
}
@media only screen and (max-width: 767px){
  .casestudy-template-default .page-hero {
    padding:20px 0 40px 0;
}
.cs-overview__grid{
  grid-template-columns: 1fr;
}
.slick-dots{
  bottom: 0;
}
.cs-metrics__grid{
  grid-template-columns: repeat(2, 1fr);
}
    .cs-challenge-item{
      padding:20px;
    }
    .mobile_first_2col{grid-template-columns:1fr;}
}

@media only screen and (max-width: 479px){
.cs-solution-item__imgs--3,
.cs-solution-item__imgs--2 ,
    .cs-metrics__grid ,
    .cs-challenge-item{
        grid-template-columns:1fr;
    }
}