    /* -- 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 {
      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 -- */
    .logos-section {
      padding: 70px 0 20px;
    }

    [data-theme="dark"] .logos-section {
      background: #080810;
    }

    [data-theme="light"] .logos-section {
      background: #f1f5f9;
    }

    .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;
      border: 1px solid transparent;
      transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
      flex: 0 0 auto;
      border-radius: 12px;
    }

    .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;
    }

    [data-theme="dark"] .logo-free-item {
      background: #ffffff;
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 12px rgba(0,0,0,0.35);
    }

    [data-theme="dark"] .logo-free-item img {
      filter: none;
    }

    [data-theme="light"] .logo-free-item {
      background: #ffffff;
      border-color: rgba(15, 23, 42, 0.09);
      box-shadow: 0 2px 8px rgba(15,23,42,0.06);
    }

    [data-theme="light"] .logo-free-item img {
      filter: none;
    }

    .logo-free-item .logo-name {
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 2px;
      color: var(--text);
      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;
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 280px 280px;
      gap: 16px;
      margin-top: 40px;
    }

    .media-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: #000;
    }

    .media-item.tall {
      grid-row: span 2;
    }

    .media-item.wide {
      grid-column: span 2;
    }

    .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: flex-end;
    }

    .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: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
      }

      .media-item.wide {
        grid-column: span 2;
      }

      .media-item.tall {
        grid-row: span 1;
      }

      .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;
      }

      .media-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .media-item.wide {
        grid-column: span 1;
      }

      .media-item {
        min-height: 220px;
      }

      .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;
      }

      .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;
}
