/* -- BUTTONS -- */
    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #0a0a0f;
      padding: 14px 30px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .btn-red:hover {
      background: #15803d;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(22, 163, 74, 0.38);
    }

    .btn-ghost {
      background: var(--accent) !important;
    color: #0a0a0f !important;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--accent);
      /* color: var(--accent) !important; */
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.88rem;
      transition: all 0.3s;
    }

    .btn-ghost:hover {
      background: var(--accent) !important;
      color: #0a0a0f !important;
    }

    .page-hero {
      padding-top: 152px;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .hero-full-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 48px 5% 0;
    }

    .hero-full-bg {
      display: none;
    }

    .hero-ghost-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-head);
      font-size: clamp(6rem, 22vw, 18rem);
      color: transparent;
      -webkit-text-stroke: 1px rgba(168, 232, 50, 0.08);
      pointer-events: none;
      line-height: 1;
      letter-spacing: 8px;
      white-space: nowrap;
      z-index: 0;
    }

    .hero-full-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
      padding: 0;
    }

    .hero-full-left {
      width: 100%;
    }

    .hero-full-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: #a8e832;
      margin-bottom: 16px;
      justify-content: center;
    }

    .hero-full-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: #a8e832;
    }

    .hero-full-eyebrow::after {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: #a8e832;
    }

    .hero-full-heading {
      font-family: var(--font-head);
      font-size: clamp(2rem, 8vw, 7.5rem);
      line-height: .88;
      letter-spacing: .01em;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-full-heading em {
      font-family: 'Outfit', sans-serif;
      font-style: normal;
      font-weight: 700;
      color: var(--accent2);
      font-size: 0.82em;
    }

    .hero-full-sub {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 32px;
    }

    .hero-full-right {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: center;
      padding-bottom: 44px;
    }

    .hero-industry-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: transparent;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--muted);
      text-transform: uppercase;
      transition: all 0.25s;
      white-space: nowrap;
    }

    .hero-industry-tag i {
      color: #a8e832;
      font-size: 0.9rem;
    }

    .hero-industry-tag:hover {
      border-color: #a8e832;
      color: var(--text);
      background: rgba(168, 232, 50, 0.06);
    }

    @media (max-width: 768px) {
      .page-hero {
        padding-top: 115px;
      }

      .hero-full-wrap {
        padding: 36px 5% 0;
      }

      .hero-full-heading {
        font-size: clamp(3rem, 14vw, 5rem);
      }
    }

    /* -- INSTAGRAM STORY SHOWCASE -- */
    .stories-section {
      padding: 70px 0;
    }

    .stories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .story-card {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 9/16;
      background: var(--card);
      border: 1px solid var(--border);
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .story-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .story-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* -- LOGOS -- */
    /* This section is intentionally theme-independent: it's always a
       full-bleed white background (matching the reference site), with
       logos sitting flush on it rather than in individual white boxes.
       Header text is force-set to dark since it can no longer rely on
       the page's light/dark theme for contrast. */
    .logos-section {
      padding: 70px 0 20px;
      background: #ffffff;
    }

    [data-theme="dark"] .logos-section,
    [data-theme="light"] .logos-section {
      background: #ffffff;
    }

    .logos-section .sec-eyebrow {
      color: #2d8b00 !important;
    }

    .logos-section .sec-heading {
      color: #0f172a !important;
    }

    .logos-section .sec-heading em {
      color: var(--accent2) !important;
    }

    .logos-section .sec-sub {
      color: #475569 !important;
    }

    .logos-free-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 28px;
      align-items: center;
      justify-content: center;
      margin-top: 44px;
    }

    .logo-free-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      transition: transform 0.3s;
      flex: 0 0 auto;
    }

    .logo-free-item:hover {
      transform: scale(1.1);
    }

    .logo-free-item img {
      max-height: 88px;
      max-width: 180px;
      width: auto;
      object-fit: contain;
      filter: none;
      transition: filter 0.3s;
    }

    .logo-free-item .logo-name {
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 2px;
      color: #0f172a;
      text-align: center;
      text-transform: uppercase;
    }

    [data-theme="dark"] .logo-free-item.dark-invert img {
      filter: none opacity(0.88);
    }

    [data-theme="dark"] .logo-free-item.dark-invert:hover img {
      filter: none opacity(1);
    }

    /* -- GRAPHIC DESIGN -- */
    .graphic-section {
      padding: 100px 0;
      overflow: hidden;
      position: relative;
    }

    [data-theme="dark"] .graphic-section {
      background: #060609;
    }

    [data-theme="light"] .graphic-section {
      background: #e2e8f0;
    }

    .graphic-header-bar {
      width: 100vw;
      margin-left: calc(-1 * ((100vw - 100%) / 2));
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 0;
      padding: 0 5% 56px;
    }

    .graphic-header-left .sec-eyebrow {
      color: #a8e832 !important;
    }

    .graphic-header-left h2 {
      font-family: var(--font-head);
      font-size: clamp(3.5rem, 7vw, 6.5rem);
      line-height: 0.95;
      letter-spacing: 2px;
      color: var(--text);
      text-transform: uppercase;
    }

    .graphic-header-left h2 em {
      font-family: 'Outfit', sans-serif;
      font-style: normal;
      color: var(--accent2);
      font-weight: 700;
    }

    .graphic-header-right {
      padding-left: 40px;
    }

    .graphic-header-right p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 440px;
    }

    .graphic-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .graphic-tab {
      padding: 9px 20px;
      border-radius: 999px;
      background: rgba(168, 232, 50, 0.07);
      border: 1px solid rgba(168, 232, 50, 0.18);
      color: var(--muted);
      font-size: 0.83rem;
      font-weight: 600;
      transition: all 0.25s;
      cursor: pointer;
      font-family: var(--font-body);
    }

    .graphic-tab:hover,
    .graphic-tab.active {
      background: #a8e832;
      color: #0a0a0f;
      border-color: #a8e832;
    }

    .graphic-showcase {
      width: 100vw;
      margin-left: calc(-1 * ((100vw - 100%) / 2));
      position: relative;
      height: 580px;
      overflow: hidden;
    }

    .graphic-showcase-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .graphic-showcase-img.active {
      opacity: 1;
    }

    .graphic-showcase-fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
    }

    .graphic-showcase-fallback.active {
      opacity: 1;
    }

    .graphic-showcase-fallback-icon {
      font-size: 5rem;
      opacity: 0.4;
    }

    .graphic-showcase-fallback-label {
      font-family: var(--font-head);
      font-size: 2rem;
      letter-spacing: 4px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
    }

    .graphic-caption-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
      padding: 40px 5% 28px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .graphic-caption-title {
      font-family: var(--font-head);
      font-size: clamp(1.4rem, 3vw, 2.4rem);
      letter-spacing: 2px;
      color: #fff;
      text-transform: uppercase;
    }

    .graphic-caption-desc {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 360px;
      text-align: right;
    }

    .graphic-caption-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #a8e832;
      color: #0a0a0f;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    /* -- BEHIND THE LENS -- */
    .media-section {
      padding: 70px 0;
    }

    /* Uniform 16:9 landscape grid — every card is the exact same shape
       (no more mixing a tall portrait card + a wide card + regular
       cards). aspect-ratio drives the height, so the grid never needs
       fixed pixel row heights or span overrides again. */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .media-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: #000;
      aspect-ratio: 16/9;
    }

    .media-item iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .media-chip {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(168, 232, 50, 0.92);
      color: #0a0a0f;
      padding: 5px 14px;
      border-radius: 999px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* -- TESTIMONIALS -- */
    .testi-section {
      padding: 80px 0;
    }

    [data-theme="dark"] .testi-section {
      background: #0a0a0f;
    }

    [data-theme="light"] .testi-section {
      background: #f1f5f9;
    }

    .testi-slider-wrap {
      position: relative;
      margin-top: 44px;
    }

    .testi-slider {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testi-slide {
      min-width: 100%;
      padding: 0 5%;
    }

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 0;
      align-items: stretch;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }
    [data-theme="light"] .testi-card {
      box-shadow: 0 4px 24px rgba(15,23,42,0.09), 0 1px 4px rgba(15,23,42,0.06);
      border-color: rgba(15,23,42,0.09);
    }

    .testi-card-stripe {
      width: 5px;
      background: linear-gradient(to bottom, #a8e832, rgba(168, 232, 50, 0.2));
      flex-shrink: 0;
    }

    .testi-card-body {
      padding: 36px 40px;
    }

    .testi-card-body .stars {
      color: #f59e0b;
      font-size: 0.9rem;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }

    .testi-card-body .quote-icon {
      font-size: 2.2rem;
      color: #a8e832;
      opacity: 0.25;
      line-height: 1;
      margin-bottom: 10px;
    }

    .testi-card-body p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.8;
      font-style: normal;
      margin-bottom: 0;
    }

    .testi-card-author {
      width: 200px;
      flex-shrink: 0;
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      text-align: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 1.4rem;
      color: #0a0a0f;
      border: 2px solid rgba(168, 232, 50, 0.3);
    }

    .testi-card-author strong {
      display: block;
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 700;
    }

    .testi-card-author span {
      font-size: 0.74rem;
      color: var(--muted);
    }

    .testi-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
    }

    .testi-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--card);
      color: var(--muted);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
    }

    .testi-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .testi-dots {
      display: flex;
      gap: 8px;
    }

    .testi-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      padding: 0;
    }

    .testi-dot.active {
      background: var(--accent);
      width: 24px;
      border-radius: 4px;
    }

    a.testi-card {
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    a.testi-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(168, 232, 50, 0.12);
      border-color: rgba(168, 232, 50, 0.3);
    }

    .testi-card-author span {
      font-size: 0.74rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* -- MERGED CTA -- */
    .merged-cta {
      position: center;
    }

    [data-theme="dark"] .merged-cta {
      background: #0d0d16;
    }

    [data-theme="light"] .merged-cta {
      background: linear-gradient(135deg, #eef3fc 0%, #e4edf8 100%);
    }

    .mcta-col {
      padding: 70px 5% 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mcta-col:first-child {
      padding-left: 7%;
    }

    .mcta-col:last-child {
      padding-right: 7%;
      text-align: center;
      align-items: center;
    }

    .mcta-divider-line {
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(168, 232, 50, 0.5), transparent);
      align-self: stretch;
    }

    .mcta-col h3 {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--text);
      letter-spacing: 1px;
      margin-bottom: 10px;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .mcta-col h3 em {
      font-family: 'Outfit', sans-serif;
      font-style: normal;
      font-weight: 700;
      color: var(--accent2);
    }

    .mcta-col p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 24px;
      line-height: 1.7;
      max-width: 360px;
    }

    .mcta-col:last-child p {
      text-align: right;
    }

    .mcta-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .mcta-col:last-child .mcta-btns {
      justify-content: flex-end;
    }

    /* -- SOCIAL FEED -- */
    .feed-section {
      padding: 0 0 70px;
    }

    .feed-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .feed-card {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 9/16;
      background: var(--card);
      border: 1px solid var(--border);
      position: relative;
      transition: transform 0.3s, box-shadow 0.4s;
    }
    

    

    

    

    .feed-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 30px 6px rgba(168, 232, 50, 0.45), 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .feed-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* -- RESPONSIVE -- */
    @media (max-width:1100px) {
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width:900px) {
      .stories-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .feed-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .merged-cta-inner {
        grid-template-columns: 1fr;
      }

      .mcta-divider-line {
        width: 80px;
        height: 1px;
        margin: 0 auto;
      }

      .mcta-col:last-child {
        text-align: left;
        align-items: flex-start;
      }

      .mcta-col:last-child .mcta-btns {
        justify-content: flex-start;
      }

      .mcta-col:last-child p {
        text-align: left;
      }

      .media-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testi-card {
        grid-template-columns: 1fr;
      }

      .testi-card-stripe {
        width: 100%;
        height: 5px;
      }

      .testi-card-author {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px 32px;
      }

      .graphic-header-bar {
        grid-template-columns: 1fr;
      }

      .graphic-header-right {
        padding-left: 0;
        padding-top: 24px;
      }

      .graphic-showcase {
        height: 340px;
      }
    }

    @media (max-width:768px) {
      .page-hero {
        padding-top: 130px;
      }

      .hero-full-wrap {
        padding: 32px 5% 0;
      }

      .hero-industry-tag {
        font-size: 0.7rem;
        padding: 7px 13px;
      }
    }

    @media (max-width:640px) {
      .stories-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feed-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mcta-col:first-child {
        padding-left: 5%;
      }

      .mcta-col:last-child {
        padding-right: 5%;
      }

      .hero-full-right {
        gap: 8px;
      }
    }

    @media (max-width:480px) {
      .stories-grid {
        grid-template-columns: 1fr;
      }

      .feed-grid {
        grid-template-columns: 1fr;
      }

      .media-grid {
        grid-template-columns: 1fr;
      }

      .testi-card-body {
        padding: 24px 20px;
      }
    }

/* --- MOBILE FIX 15 --- */
@media (max-width: 480px) {
  .logo-free-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .logo-free-item {
    padding: 16px 12px !important;
    border-radius: 8px !important;
  }
  .logo-free-item img {
    max-height: 40px !important;
    max-width: 100px !important;
  }
  .clients-hero h1 {
    font-size: clamp(2rem, 9vw, 3.5rem) !important;
  }
}

@media (max-width: 360px) {
  .logo-free-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

.logo-free-item.white-to-dark img { filter: brightness(0) opacity(0.8) !important; }
.logo-free-item.white-to-dark:hover img { filter: brightness(0) opacity(1) !important; }

/* --- LOGO GRID SHOW MORE FEATURE --- */
.logos-free-grid.collapsed .logo-free-item:nth-child(n+13) {
  display: none !important;
}
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}





@media (max-width: 768px) {
  .stories-section {
    padding-top: 20px !important;
  }
}
@media (max-width: 480px) {
  .stories-grid, .feed-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 768px) {
  .stories-section {
    padding-bottom: 20px !important;
  }
  .logos-section {
    padding-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .logos-section {
    padding-bottom: 20px !important;
  }
  .graphic-section {
    padding-top: 30px !important;
  }
}

/* Force uppercase on all main headings */
.hero-full-heading,
.sec-heading,
.graphic-header-left h2 {
  text-transform: uppercase !important;
}
/* ===== MOBILE MARQUEE FIX ===== */
@media (max-width: 768px) {

    .marquee-strip{
        padding: 12px 0;
    }

    .marquee-track{
        gap: 28px;          /* space between items */
    }

    .marquee-track span{
        font-size: 0.62rem;
        letter-spacing: 1.5px;
        padding: 0 8px;
        white-space: nowrap;
        position: relative;
    }

    /* Separator dot */
    .marquee-track span::after{
        right: -16px;
    }

}

/* =====================================================================
   CLIENTS PAGE — 2026 CONTENT BLOCKS
   Impact stats · Industries · Spotlights · Reels · Logo filtering
   ===================================================================== */

/* ── Client impact stats ───────────────────────────────────────────── */
.impact-section {
  padding: 70px 0 50px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.impact-item {
  text-align: center;
  padding: 8px 14px;
  position: relative;
}
.impact-item + .impact-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 14%;
  height: 72%;
  width: 1px;
  background: var(--border);
}
.impact-num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent2);
  letter-spacing: 1px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.impact-plus { font-size: 0.5em; color: var(--accent); margin-top: 0.25em; }
.impact-label {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  letter-spacing: 0.3px;
}
.impact-sub {
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Industries we serve ───────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 232, 50, 0.45);
  box-shadow: 0 16px 40px var(--shadow);
}
.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(168, 232, 50, 0.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.industry-card h3 {
  font-size: 1.18rem;
  font-weight: 650;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.industry-link {
  margin-top: 18px;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.industry-link:hover { gap: 11px; }

/* ── Featured client spotlights ────────────────────────────────────── */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.spotlight-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.spotlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 109, 67, 0.45);
  box-shadow: 0 20px 50px var(--shadow);
}
.spotlight-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #14202b, #24384a);
}
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.spotlight-card:hover .spotlight-media img { transform: scale(1.07); }
.spotlight-media.no-img::after {
  content: '\ea6a';
  font-family: 'remixicon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.25);
}
.spotlight-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0a0a0f;
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.spotlight-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.spotlight-body h3 {
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--text-strong);
  margin-bottom: 9px;
}
.spotlight-body > p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.spotlight-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 18px; }
.spotlight-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--input-bg);
  border: 1px solid var(--border);
}
.spotlight-cta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.spotlight-card:hover .spotlight-cta { gap: 11px; }
.spotlight-more { text-align: center; margin-top: 40px; }

/* ── Client video testimonials (Instagram reels) ───────────────────── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.reel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.reel-card:not(.reel-card-empty):hover {
  transform: translateY(-6px);
  border-color: rgba(245, 109, 67, 0.5);
  box-shadow: 0 18px 44px var(--shadow);
}
.reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-play {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0a0a0f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.reel-card:hover .reel-play { transform: scale(1.12); }
.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.reel-quote {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.reel-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.reel-meta strong { font-size: 0.95rem; font-weight: 650; color: var(--text-strong); }
.reel-meta span { font-size: 0.79rem; color: var(--muted); }

.reel-card-empty {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.5);
  background: var(--card2);
}
.reel-card-empty .reel-media {
  background: var(--input-bg) !important;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  text-align: center;
}
.reel-empty-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--muted);
  border: 1px dashed var(--muted2);
}
.reel-empty-text { margin: 0; font-size: 0.78rem; line-height: 1.6; color: var(--muted); }
.reel-empty-text small { font-size: 0.68rem; color: var(--muted2); }
.reels-more { text-align: center; margin-top: 38px; }

/* ── Brand logo filtering ──────────────────────────────────────────── */
.logo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px auto 22px;
}
.logo-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 550;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.logo-filter-tab i { font-size: 0.95rem; }
.logo-filter-tab:hover { transform: translateY(-2px); border-color: rgba(45, 139, 0, 0.4); color: #0f172a; }
.logo-filter-tab.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}
.logo-filter-count {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #475569;
}
.logo-filter-tab.active .logo-filter-count { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.logo-filter-status {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 22px;
}
.logo-free-item.is-hidden { display: none !important; }
.logo-empty {
  text-align: center;
  padding: 40px 0;
  color: #64748b;
  font-size: 0.92rem;
}

/* The old rule hid logos 13+ with nth-child, which miscounted as soon as a
   filter hid siblings. Visibility now comes from .is-hidden in clients.js. */
.logos-free-grid.collapsed .logo-free-item:nth-child(n+13) { display: flex !important; }
.logos-free-grid.collapsed .logo-free-item.is-hidden { display: none !important; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .impact-item:nth-child(odd)::before { display: none; }
}
@media (max-width: 768px) {
  .impact-section { padding: 46px 0 34px; }
  .industries-grid, .spotlight-grid { margin-top: 30px; gap: 16px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
  .logo-filter-bar { gap: 8px; margin: 24px auto 16px; }
  .logo-filter-tab { padding: 8px 13px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .impact-item + .impact-item::before { display: none; }
  .impact-num { font-size: clamp(2rem, 11vw, 2.8rem); }
  .industry-card { padding: 22px 18px 20px; }
  .spotlight-body { padding: 18px 18px 20px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reel-play { width: 44px; height: 44px; font-size: 1.25rem; }
  .logo-filter-bar { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .logo-filter-bar::-webkit-scrollbar { display: none; }
  .logo-filter-tab { flex: 0 0 auto; }
}

/* The mobile logo rules below originally targeted `.logo-free-grid`, which is
   not a class this page uses (the grid is `.logos-free-grid`), so they never
   applied on phones. */
@media (max-width: 480px) {
  .logos-free-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }
}
@media (max-width: 360px) {
  .logos-free-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
}
