/* ── Our Work Page ── */
    .work-hero {
      background: linear-gradient(135deg, #080f14 0%, #1c5266 60%, #226673 100%);
      padding: 220px 0 80px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .work-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(126,166,172,0.13) 0%, transparent 65%);
      pointer-events: none;
    }
    .work-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
      position: relative;
    }
    .work-hero h1 span { color: #7ea6ac; }
    .work-hero p {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      color: rgba(255,255,255,0.72);
      max-width: 780px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }
    .hero-p-break { display: block; }
    @media (max-width: 600px) {
      .work-hero p { max-width: 100%; }
      .hero-p-break { display: none; }
    }

    /* ── Case Study Grid ── */
    .work-section {
      background: #f4f7f8;
      padding: 80px 0 100px;
    }
    .work-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .work-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #226673;
      border-left: 3px solid #7ea6ac;
      padding-left: 12px;
      margin-bottom: 12px;
      display: block;
    }
    .work-section-heading {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 48px;
      letter-spacing: 0.5px;
    }
    .work-section-heading span { color: #226673; }

    .case-study-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
      gap: 36px;
    }

    .case-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(34,102,115,0.09);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
    }
    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(34,102,115,0.16);
    }

    .case-card-banner {
      background: linear-gradient(135deg, #1c5266 0%, #226673 100%);
      padding: 36px 36px 28px;
      position: relative;
      overflow: hidden;
    }
    .case-card-banner::after {
      content: '';
      position: absolute;
      bottom: -30px; right: -30px;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .case-card-banner::before {
      content: '';
      position: absolute;
      top: -20px; right: 60px;
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(126,166,172,0.12);
    }

    .case-tag {
      display: inline-block;
      background: rgba(126,166,172,0.25);
      color: #b0d4d9;
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .case-card-banner h2 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 10px;
      position: relative;
    }
    .case-card-banner p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.6;
      position: relative;
    }

    .case-card-body {
      padding: 28px 36px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .case-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 22px;
    }
    .case-stat {
      background: #f4f7f8;
      border-radius: 10px;
      padding: 12px 14px;
      text-align: center;
    }
    .case-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #226673;
      line-height: 1;
    }
    .case-stat-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.75rem;
      color: #777;
      margin-top: 4px;
    }

    .case-excerpt {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.92rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 24px;
      flex: 1;
    }

    .case-meta {
      border-top: 1px solid #eef2f3;
      padding-top: 18px;
    }
    .case-industry {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.8rem;
      color: #999;
    }
    .case-read-link {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #226673;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .case-card:hover .case-read-link { gap: 10px; }

    /* ── CTA band ── */
    .work-cta {
      background: #226673;
      padding: 64px 0;
      text-align: center;
      color: #fff;
    }
    .work-cta h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }
    .work-cta p {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 28px;
    }

    /* ── Impact Stats Bar ── */
    .work-stats-bar {
      background: #fff;
      border-bottom: 1px solid #eef2f3;
      padding: 36px 0;
    }
    .work-stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .work-stat-item {
      text-align: center;
      padding: 0 48px;
      border-right: 1px solid #e0e8ea;
    }
    .work-stat-item:last-child { border-right: none; }
    .work-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: #226673;
      line-height: 1;
    }
    .work-stat-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.8rem;
      color: #777;
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ── Project Showcase ── */
    .work-showcase {
      background: #fff;
      padding: 80px 0 90px;
    }
    .work-showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .showcase-card {
      background: #f4f7f8;
      border-radius: 16px;
      padding: 30px 28px;
      border: 1px solid #e4eef0;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .showcase-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(34,102,115,0.11);
    }
    .showcase-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #1c5266, #226673);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      color: #fff;
    }
    .showcase-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #226673;
      margin-bottom: 8px;
      display: block;
    }
    .showcase-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
    }
    .showcase-card p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.85rem;
      color: #5a6a72;
      line-height: 1.6;
    }
    .showcase-industry {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.75rem;
      color: #aaa;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #dde7ea;
    }

    /* ── Process (reuse global styles, override container) ── */
    .work-process {
      background: #f4f7f8;
      padding: 80px 0 90px;
    }
    .work-process .work-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .work-process-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
    }
    .work-process-title span { color: #226673; }
    .work-process-sub {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      color: #4a6070;
      margin-bottom: 52px;
    }
    .wp-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .wp-step {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      border: 1px solid #e0eaed;
      position: relative;
    }
    .wp-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #e0eaed;
      line-height: 1;
      margin-bottom: 12px;
    }
    .wp-step h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #226673;
      margin-bottom: 8px;
    }
    .wp-step p {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.88rem;
      color: #5a6a72;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .work-showcase-grid { grid-template-columns: repeat(2, 1fr); }
      .wp-track { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 700px) {
      .case-study-grid { grid-template-columns: 1fr; }
      .case-card-banner, .case-card-body { padding-left: 24px; padding-right: 24px; }
      .work-showcase-grid { grid-template-columns: 1fr; }
      .wp-track { grid-template-columns: 1fr; }
      .work-stat-item { padding: 12px 24px; border-right: none; border-bottom: 1px solid #e0e8ea; }
      .work-stat-item:last-child { border-bottom: none; }
    }

    /* ── Portfolio Carousel ── */
    .work-gallery-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      margin: 80px auto 0;
      max-width: 620px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    }
    .work-gallery-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .work-gallery-slide {
      min-width: 100%;
      position: relative;
      background: #0d2e38;
    }
    .work-gallery-slide img {
      width: 100%; max-height: 420px;
      object-fit: contain;
      display: block;
    }
    .work-gallery-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(13,46,56,0.92) 0%, transparent 100%);
      padding: 32px 24px 20px;
    }
    .work-gallery-tag {
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: #7ea6ac; display: block; margin-bottom: 4px;
    }
    .work-gallery-caption h4 {
      font-family: 'Oswald', sans-serif; font-size: 1.1rem;
      color: #fff; margin: 0; font-weight: 600;
    }
    .work-gallery-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(34,102,115,0.85); border: none; color: #fff;
      width: 44px; height: 44px; border-radius: 50%;
      font-size: 1.2rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s ease;
      z-index: 2;
    }
    .work-gallery-btn:hover { background: #226673; }
    .work-gallery-prev { left: 14px; }
    .work-gallery-next { right: 14px; }
    .work-gallery-dots {
      position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 7px; z-index: 2;
    }
    .work-gallery-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.4); cursor: pointer;
      transition: background 0.2s ease;
    }
    .work-gallery-dot.active { background: #fff; }