
    /* ── RESET ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      background: #f7ffea;
      color: #1A1A1A;
      font-family: 'Switzer', -apple-system, 'Helvetica Neue', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ── SWITZER font ── */
    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-300-normal.woff2') format('woff2');
      font-weight: 300;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-400-normal.woff2') format('woff2');
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-500-normal.woff2') format('woff2');
      font-weight: 500;
      font-display: swap;
    }

    /* ── CURSOR ── */
    .cur,
    .cur-r {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
    }

    .cur {
      width: 7px;
      height: 7px;
      background: #7B6CF6;
      transition: transform .15s ease;
    }

    .cur-r {
      width: 26px;
      height: 26px;
      border: 1px solid rgba(123, 108, 246, .4);
      z-index: 9998;
      transition: transform .45s cubic-bezier(.16, 1, .3, 1);
    }

    @media(pointer:coarse) {

      .cur,
      .cur-r {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    @media(pointer:fine) {
      body {
        cursor: none;
      }
    }

    /* ── PROGRESS ── */
    .prog {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      z-index: 600;
    }

    .prog-f {
      height: 100%;
      background: #7B6CF6;
      width: 0;
      transition: width .1s linear;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 400;
      padding: 26px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }

    nav.sc {
      padding: 14px 56px;
      background: rgba(247, 255, 234, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(0, 0, 0, .07);
    }

    .nav-logo img {
      height: 28px;
      width: auto;
      transition: filter .3s;
    }

    nav.hero-nav:not(.sc) .nav-logo img {
      filter: brightness(0) invert(1);
    }

    .nav-r {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, .7);
      letter-spacing: .01em;
      transition: color .2s;
    }

    nav.sc .nav-links a {
      color: #888;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    nav.sc .nav-links a:hover,
    nav.sc .nav-links a.active {
      color: #1A1A1A;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 400;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
      padding: 8px 20px;
      border-radius: 100px;
      transition: all .2s;
      white-space: nowrap;
    }

    nav.sc .nav-cta {
      color: #1A1A1A;
      border-color: rgba(0, 0, 0, .18);
    }

    .nav-cta:hover {
      background: #fff;
      color: #1A1A1A;
      border-color: #fff;
    }

    nav.sc .nav-cta:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    .ham {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: all .2s;
      flex-shrink: 0;
    }

    nav.sc .ham {
      border-color: rgba(0, 0, 0, .14);
    }

    .ham span {
      display: block;
      height: 1px;
      background: #fff;
      transition: width .2s;
    }

    .ham span:nth-child(1) {
      width: 14px;
    }

    .ham span:nth-child(2) {
      width: 10px;
    }

    nav.sc .ham span {
      background: #1A1A1A;
    }

    body.mob-open #nav {
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    body.mob-open {
      overflow: hidden;
    }

    /* ── MOBILE NAV ── */
    .mob-nav {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 500;
      display: flex;
      flex-direction: column;
      clip-path: circle(0% at calc(100% - 44px) 42px);
      transition: clip-path .55s cubic-bezier(.16, 1, .3, 1);
      pointer-events: none;
    }

    .mob-nav.open {
      clip-path: circle(150% at calc(100% - 44px) 42px);
      pointer-events: all;
    }

    .mob-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      flex-shrink: 0;
    }

    .mob-top img {
      height: 26px;
    }

    .mob-x {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }

    .mob-x:hover {
      background: rgba(0, 0, 0, .05);
    }

    .mob-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 28px;
    }

    .mob-links a {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 9vw, 50px);
      color: #1A1A1A;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .07);
      display: block;
      text-align: right;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s, transform .4s, color .2s;
    }

    .mob-links a:hover {
      color: #7B6CF6;
    }

    .mob-nav.open .mob-links a {
      opacity: 1;
      transform: translateY(0);
    }

    .mob-nav.open .mob-links a:nth-child(1) {
      transition-delay: .12s;
    }

    .mob-nav.open .mob-links a:nth-child(2) {
      transition-delay: .19s;
    }

    .mob-nav.open .mob-links a:nth-child(3) {
      transition-delay: .26s;
    }

    .mob-nav.open .mob-links a:nth-child(4) {
      transition-delay: .33s;
    }

    .mob-foot {
      padding: 20px 28px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      opacity: 0;
      transition: opacity .3s ease .38s;
    }

    .mob-nav.open .mob-foot {
      opacity: 1;
    }

    .mob-contact {
      font-size: 12px;
      color: #888;
      line-height: 1.6;
    }

    .mob-cta {
      font-size: 13px;
      padding: 9px 18px;
      border-radius: 100px;
      background: #1A1A1A;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: background .2s;
    }

    .mob-cta:hover {
      background: #7B6CF6;
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .sec {
      padding: 100px 0;
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #ABABAB;
      display: block;
      margin-bottom: 14px;
    }

    .sec-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 3.8vw, 52px);
      line-height: 1.06;
      letter-spacing: -.022em;
      color: #1A1A1A;
      white-space: nowrap;
    }

    .sec-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    hr.rule {
      display: none !important;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-dark:hover {
      opacity: .75;
    }

    .btn-link {
      font-size: 13px;
      color: #888;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-link svg {
      transition: transform .2s;
    }

    .btn-link:hover {
      color: #1A1A1A;
    }

    .btn-link:hover svg {
      transform: translateX(4px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media img,
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .15) 100%);
    }

    .hero-body {
      position: relative;
      z-index: 2;
      padding: 0 56px 60px;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 18px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .3s forwards;
    }

    .hero-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(52px, 6.5vw, 92px);
      line-height: .97;
      letter-spacing: -.03em;
      color: #fff;
      max-width: 900px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .5s forwards;
    }

    .hero-h em {
      font-style: italic;
      color: rgba(255, 255, 255, .6);
    }

    .hero-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-top: 36px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .7s forwards;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .55);
      max-width: 360px;
      line-height: 1.75;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-shrink: 0;
    }

    .btn-w {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #1f1f1f;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-w:hover {
      opacity: .85;
    }

    .btn-gw {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-gw svg {
      transition: transform .2s;
    }

    .btn-gw:hover {
      color: #fff;
    }

    .btn-gw:hover svg {
      transform: translateX(4px);
    }

    /* ── MARQUEE ── */
    .mq {
      overflow: hidden;
      position: relative;
      border-top: none;
      border-bottom: none;
      padding: 20px 0;
    }

    .mq::before,
    .mq::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .mq::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .mq::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .mq-t {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: tick 32s linear infinite;
      width: max-content;
    }

    .mq:hover .mq-t {
      animation-play-state: paused;
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .mq-b {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #C0C0B8;
      white-space: nowrap;
    }

    .mq-d {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .12);
      flex-shrink: 0;
    }

    /* ── REEL STRIP ── */
    .reel-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .reel-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 44px;
      padding: 0 56px;
      flex-wrap: wrap;
    }

    .reel-outer {
      position: relative;
      overflow: hidden;
    }

    .reel-outer::before,
    .reel-outer::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .reel-outer::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .reel-outer::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .reel-strip {
      display: flex;
      gap: 10px;
      animation: rscroll 38s linear infinite;
      width: max-content;
      padding: 0 56px;
    }

    .reel-sec:hover .reel-strip {
      animation-play-state: paused;
    }

    @keyframes rscroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .rc {
      width: 140px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .rc-inner {
      aspect-ratio: 9/16;
      position: relative;
      overflow: hidden;
    }

    .rc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-bg {
      transform: scale(1.06);
    }

    .rc-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(.8);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all .3s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-play {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .rc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
    }

    .rc:hover .rc-overlay {
      opacity: 1;
    }

    .rc-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 10px 9px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
      display: none;
    }

    /* reel bg colors */
    .rg1 {
      background: linear-gradient(150deg, #e0d5f5, #b8a8f0);
    }

    .rg2 {
      background: linear-gradient(150deg, #d5e8f0, #a8c8e8);
    }

    .rg3 {
      background: linear-gradient(150deg, #f0e5d5, #e8c8a0);
    }

    .rg4 {
      background: linear-gradient(150deg, #d5f0e0, #a0dbb8);
    }

    .rg5 {
      background: linear-gradient(150deg, #f0d5e8, #e8a0c8);
    }

    .rg6 {
      background: linear-gradient(150deg, #e8e0f0, #c8b8e8);
    }

    .rg7 {
      background: linear-gradient(150deg, #f0ead5, #d4bc80);
    }

    .rg8 {
      background: linear-gradient(150deg, #d5eaf0, #80bcd4);
    }

    /* ── LIGHTBOX ── */
    #lb {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(247, 255, 234, .65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    #lb.on {
      opacity: 1;
      pointer-events: all;
    }

    .lb-box {
      position: relative;
      width: min(700px, 90vw);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transform: scale(.94);
      transition: transform .35s cubic-bezier(.16, 1, .3, 1);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    }

    #lb.on .lb-box {
      transform: scale(1);
    }

    .lb-video {
      width: 100%;
      aspect-ratio: 16/9;
      background: #f7ffea;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }

    .lb-play-btn {
      width: 56px;
      height: 56px;
      background: #7B6CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-hint {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-info {
      padding: 18px 24px;
    }

    .lb-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      margin-bottom: 3px;
    }

    .lb-brand {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, .06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: background .2s;
    }

    .lb-close:hover {
      background: rgba(0, 0, 0, .12);
    }

    /* ── STATS ── */
    .stats-sec {
      padding: 72px 0;
      border-top: none;
      border-bottom: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(0, 0, 0, .08);
    }

    .stat:last-child {
      border: none;
    }

    .stat-n {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(42px, 5vw, 58px);
      color: #1A1A1A;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .stat-n em {
      font-style: normal;
      color: #7B6CF6;
    }

    .stat-l {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    /* ── SERVICES ── */
    .svc-sec {
      padding: 100px 0;
    }

    .svc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 56px;
      align-items: start;
    }

    .svc-img-col {
      position: sticky;
      top: 120px;
    }

    .svc-img-frame {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #E8ECE6;
    }

    .svc-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity .35s ease;
    }

    .svc-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .svc-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 26px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      cursor: default;
      transition: all .2s;
    }

    .svc-row-num {
      font-size: 11px;
      color: #CCC;
      width: 26px;
      flex-shrink: 0;
    }

    .svc-row-body {
      flex: 1;
    }

    .svc-row-name {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(24px, 2.6vw, 32px);
      color: #1A1A1A;
      line-height: 1.1;
      letter-spacing: -.015em;
      transition: color .25s;
    }

    .svc-row-tags {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 4px;
    }

    .svc-row-tags span {
      margin-right: 8px;
    }

    .svc-row-tags span::after {
      content: '·';
      margin-left: 8px;
      color: #DDD;
    }

    .svc-row-tags span:last-child::after {
      content: '';
    }

    .svc-row-arr {
      opacity: 0;
      transform: translateX(-6px);
      transition: all .25s;
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .svc-row:hover .svc-row-name,
    .svc-row.on .svc-row-name {
      color: #7B6CF6;
    }

    .svc-row:hover .svc-row-arr,
    .svc-row.on .svc-row-arr {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── WORK — editorial 2col offset ── */
    .work-sec {
      padding: 100px 0;
    }

    .work-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .work-col {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .work-col:nth-child(2) {
      padding-top: 80px;
    }

    .wi {
      cursor: pointer;
    }

    .wi-img {
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      margin-bottom: 14px;
    }

    .wi-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .wi:hover .wi-img img {
      transform: scale(1.04);
    }

    .wi:nth-child(1) .wi-img {
      aspect-ratio: 4/3;
    }

    .wi:nth-child(2) .wi-img {
      aspect-ratio: 3/4;
    }

    .wi-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .wi-brand {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-type {
      font-size: 11px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      line-height: 1.3;
      letter-spacing: -.01em;
    }

    /* ── CASE STUDIES ── */
    .cases-sec {
      padding: 100px 0;
    }

    .cases-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .c-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .c-track::-webkit-scrollbar {
      display: none;
    }

    .cc {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transition: all .3s ease;
    }

    .cc:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    }

    .cc-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .cc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .cc:hover .cc-img img {
      transform: scale(1.04);
    }

    .cc-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .cc-body {
      padding: 20px 22px 24px;
    }

    .cc-svc {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #7B6CF6;
      margin-bottom: 8px;
    }

    .cc-t {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 16px;
      color: #1A1A1A;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .cc-m {
      display: flex;
      gap: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .cc-mv {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 22px;
      color: #1A1A1A;
    }

    .cc-mv em {
      font-style: normal;
      color: #7B6CF6;
    }

    .cc-mk {
      font-size: 10px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
      margin-top: 1px;
    }

    .s-btns {
      display: flex;
      gap: 8px;
    }

    .s-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s;
      color: #888;
    }

    .s-btn:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    /* ── TESTIMONIALS horizontal slider ── */
    .testi-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .testi-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
      padding: 0 56px;
    }

    .testi-track-wrap {
      position: relative;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 56px;
      z-index: 2;
      pointer-events: none;
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .testi-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
      padding: 0 56px;
    }

    .testi-track::-webkit-scrollbar {
      display: none;
    }

    .tc {
      flex: 0 0 380px;
      scroll-snap-align: start;
      border-top: 1px solid rgba(0, 0, 0, .1);
      padding-top: 22px;
    }

    .tc-q {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-style: italic;
      font-size: 56px;
      color: #7B6CF6;
      line-height: 1;
      margin-bottom: 12px;
      opacity: .65;
    }

    .tc-txt {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tc-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #7B6CF6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }

    .tc-name {
      font-size: 13px;
      font-weight: 500;
      color: #1A1A1A;
    }

    .tc-role {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 1px;
    }

    /* ── CONTACT ── */
    .contact-sec {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .c-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(32px, 4vw, 50px);
      color: #1A1A1A;
      line-height: 1.04;
      letter-spacing: -.025em;
      margin: 14px 0 14px;
    }

    .c-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    .c-sub {
      font-size: 14px;
      color: #777;
      line-height: 1.75;
    }

    .c-details {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cd {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: #888;
    }

    .cd svg {
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fl {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .fi,
    .fsel,
    .fta {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: 6px;
      padding: 11px 14px;
      color: #1A1A1A;
      font-family: 'Switzer', sans-serif;
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }

    .fi:focus,
    .fsel:focus,
    .fta:focus {
      border-color: #7B6CF6;
      box-shadow: 0 0 0 3px rgba(123, 108, 246, .1);
    }

    .fi::placeholder,
    .fta::placeholder {
      color: #CCC;
    }

    .fta {
      resize: none;
      height: 88px;
      line-height: 1.6;
    }

    .fsel {
      background: #fff;
    }

    .fsub {
      background: #1A1A1A;
      color: #f7ffea;
      border: none;
      padding: 12px 26px;
      border-radius: 100px;
      font-family: 'Switzer', sans-serif;
      font-size: 13px;
      font-weight: 400;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      align-self: flex-start;
      transition: opacity .2s;
    }

    .fsub:hover {
      opacity: .75;
    }

    /* ── FOOTER ── */
    footer {
      background: #1A1A1A;
      padding: 60px 0 30px;
    }

    .ft-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .ft-logo {
      height: 24px;
      width: auto;
      filter: brightness(10) saturate(0);
      opacity: .6;
      margin-bottom: 14px;
      display: block;
    }

    .ft-tl {
      font-size: 13px;
      color: rgba(255, 255, 255, .28);
      line-height: 1.7;
      max-width: 240px;
    }

    .ft-socs {
      display: flex;
      gap: 9px;
      margin-top: 20px;
    }

    .fsoc {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .28);
      transition: all .2s;
    }

    .fsoc:hover {
      border-color: #7B6CF6;
      color: #A89AF9;
    }

    .fc-t {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      margin-bottom: 14px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .flinks a {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      transition: color .2s;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, .75);
    }

    .ft-bot {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
    }

    .ft-legal {
      display: flex;
      gap: 18px;
    }

    .ft-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
      transition: color .2s;
    }

    .ft-legal a:hover {
      color: rgba(255, 255, 255, .38);
    }

    /* ── FLOAT CTA ── */
    .fcta {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 100;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
      transform: translateY(60px);
      opacity: 0;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
    }

    .fcta.on {
      transform: translateY(0);
      opacity: 1;
    }

    .fcta:hover {
      background: #7B6CF6;
      box-shadow: 0 8px 24px rgba(123, 108, 246, .3);
    }

    /* ── REVEAL ── */
    .rev {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
    }

    .rev.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .1s;
    }

    .d2 {
      transition-delay: .2s;
    }

    .d3 {
      transition-delay: .3s;
    }

    .d4 {
      transition-delay: .4s;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── MOBILE ── */
    @media(max-width:960px) {

      nav,
      nav.sc {
        padding: 18px 24px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .wrap {
        padding: 0 24px;
      }

      .hero-body {
        padding: 0 24px 52px;
      }

      .reel-hdr {
        padding: 0 24px;
      }

      .reel-strip {
        padding: 0 24px;
      }

      .testi-hdr {
        padding: 0 24px;
      }

      .testi-track {
        padding: 0 24px;
      }

      .testi-track-wrap::before,
      .testi-track-wrap::after {
        display: none;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      .svc-layout {
        grid-template-columns: 1fr;
      }

      .svc-img-col {
        display: none;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .work-col:nth-child(2) {
        padding-top: 0;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .frow {
        grid-template-columns: 1fr;
      }

      .cc {
        flex: 0 0 300px;
      }

      .tc {
        flex: 0 0 300px;
      }
    }

    @media(max-width:600px) {
      .ft-top {
        grid-template-columns: 1fr;
      }

      .sec-h {
        font-size: clamp(28px, 8vw, 36px);
      }

      .hero-h {
        font-size: clamp(40px, 9vw, 64px);
      }
    }

    /* FORCE SWITZER EVERYWHERE */
    html,
    body,
    *,
    *::before,
    *::after {
      font-family: 'Switzer', sans-serif !important;
    }




    /* FINAL DESIGN OVERRIDES */

    /* Typography */
    .hero-h {
      font-size: clamp(44px, 5vw, 72px) !important;
      max-width: 820px !important;
      line-height: .95 !important;
      font-weight: 600 !important;
    }

    .sec-h,
    .c-h,
    .wi-title,
    .svc-row-name,
    .stat-n {
      font-weight: 600 !important;
    }

    .sec {
      padding: 140px 0 !important;
    }



    /* Work section minimal */
    .work-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 24px !important;
    }

    .wi-img {
      border-radius: 16px !important;
      overflow: hidden !important;
    }

    .wi-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    .work-col:nth-child(2) {
      padding-top: 40px !important;
    }

    /* Services */
    .svc-layout {
      gap: 50px !important;
    }

    .svc-row {
      padding: 32px 0 !important;
    }

    /* Footer visibility */
    .ft-copy,
    .ft-legal a,
    .ft-tl,
    .flinks a,
    .fc-t {
      color: rgba(255, 255, 255, .88) !important;
    }

    /* CTA before footer */
    .prefooter-cta {
      min-height: 100svh;
      background: #111;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .prefooter-cta h2 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: .95;
      margin-bottom: 20px;
    }

    .prefooter-cta a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      border-bottom: 1px solid #fff;
      padding-bottom: 4px;
    }



    /* OUR WORK */
    .work-grid {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 24px !important
    }

    .work-col {
      display: contents !important
    }

    .work-col:nth-child(2) {
      padding-top: 0 !important
    }

    .wi {
      position: relative;
      border-radius: 18px;
      overflow: hidden
    }

    .wi-img {
      margin-bottom: 0 !important;
      aspect-ratio: 4/5 !important
    }

    .wi-meta,
    .wi-title {
      position: absolute;
      z-index: 3;
      color: #fff
    }

    .wi-meta {
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: space-between
    }

    .wi-title {
      left: 18px;
      bottom: 18px;
      right: 18px;
      font-size: 20px !important
    }

    .wi::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15))
    }

    .wi-brand,
    .wi-type {
      color: #fff !important
    }

    /* TESTIMONIALS */
    .testi-sec {
      overflow: hidden !important
    }

    .testi-hdr,
    .testi-track-wrap {
      max-width: 1200px;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 56px !important;
      padding-right: 56px !important
    }

    .testi-hdr {
      margin-bottom: 44px !important
    }

    .testi-track-wrap {
      overflow: hidden
    }

    .testi-track-wrap::before {
      display: none !important
    }

    .testi-track-wrap::after {
      right: 56px !important;
      width: 90px !important;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%) !important
    }

    .testi-track {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 24px !important;
      padding: 0 !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .tc {
      flex: 0 0 calc((100% - 48px)/3) !important;
      min-width: calc((100% - 48px)/3) !important;
      border-top: 0 !important;
      padding-top: 0 !important;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .tc-q {
      margin-bottom: 8px !important
    }

    .testi-sec .rev,
    .cases-sec .rev {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important
    }

    /* Case studies */
    .cases-sec {
      overflow: hidden !important
    }

    .c-track {
      gap: 26px !important;
      padding: 0 0 12px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .c-track::after {
      content: '';
      flex: 0 0 1px
    }

    .cc {
      flex: 0 0 calc((100% - 52px)/3) !important;
      min-width: calc((100% - 52px)/3) !important;
      scroll-snap-align: start;
      transform: none !important;
      box-shadow: none !important
    }

    .cc:hover {
      transform: none !important;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .05) !important
    }

    .cc-img {
      height: 228px !important
    }

    .cc-img img {
      transform: none !important
    }

    .cc:hover .cc-img img {
      transform: none !important
    }

    .cases-sec .wrap {
      position: relative
    }

    .cases-sec .wrap::after {
      content: '';
      position: absolute;
      right: 56px;
      top: 132px;
      bottom: 0;
      width: 86px;
      pointer-events: none;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%)
    }

    /* CTA */
    .prefooter-cta {
      min-height: 100svh !important;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-bottom: 0 !important;
      transform: none !important;
      transition: none !important;
    }

    .prefooter-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .58)), url('https://images.unsplash.com/photo-1516726817505-f5ed825624d8?w=1800&q=80') center/cover;
      z-index: -1
    }

    .prefooter-cta h2 {
      font-size: clamp(42px, 5.8vw, 78px) !important;
      max-width: 760px;
      text-align: center;
      line-height: .98
    }

    .prefooter-cta p {
      display: none !important
    }

    .prefooter-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      padding: 13px 24px;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s
    }

    .prefooter-cta a:hover {
      background: #fff;
      color: #111;
      border-color: #fff
    }

    body {
      padding-bottom: var(--footer-h, 0px);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: #f7ffea;
      z-index: -2;
      pointer-events: none
    }

    section,
    .mq,
    .hero,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .prefooter-cta {
      position: relative;
      z-index: 1
    }

    .mq,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec {
      background: #f7ffea
    }

    .hero,
    .prefooter-cta {
      background: #111
    }

    .prefooter-cta {
      z-index: 2
    }

    hr.rule {
      display: none !important
    }

    .mq,
    .stats-sec {
      border-top: 0 !important;
      border-bottom: 0 !important
    }

    .svc-list,
    .svc-row,
    .cc,
    .cc-m,
    .ft-bot {
      border-color: rgba(0, 0, 0, .045) !important
    }


    footer {
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      padding: clamp(42px, 6vw, 72px) 0 30px !important;
    }

    @media(max-width:1200px) {
      .work-grid {
        grid-template-columns: repeat(3, 1fr) !important
      }
    }

    @media(max-width:960px) {
      .work-grid {
        grid-template-columns: 1fr !important
      }

      .tc {
        flex: 0 0 100% !important;
        min-width: 100% !important
      }

      .cc {
        flex: 0 0 86% !important;
        min-width: 86% !important
      }

      .testi-hdr,
      .testi-track-wrap {
        padding-left: 24px !important;
        padding-right: 24px !important
      }

      .testi-track-wrap::after {
        right: 24px !important
      }

      .cases-sec .wrap::after {
        right: 24px
      }
    }



    /* ── RESET ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      background: #f7ffea;
      color: #1A1A1A;
      font-family: 'Switzer', -apple-system, 'Helvetica Neue', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ── SWITZER font ── */
    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-300-normal.woff2') format('woff2');
      font-weight: 300;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-400-normal.woff2') format('woff2');
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-500-normal.woff2') format('woff2');
      font-weight: 500;
      font-display: swap;
    }

    /* ── CURSOR ── */
    .cur,
    .cur-r {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
    }

    .cur {
      width: 7px;
      height: 7px;
      background: #7B6CF6;
      transition: transform .15s ease;
    }

    .cur-r {
      width: 26px;
      height: 26px;
      border: 1px solid rgba(123, 108, 246, .4);
      z-index: 9998;
      transition: transform .45s cubic-bezier(.16, 1, .3, 1);
    }

    @media(pointer:coarse) {

      .cur,
      .cur-r {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    @media(pointer:fine) {
      body {
        cursor: none;
      }
    }

    /* ── PROGRESS ── */
    .prog {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      z-index: 600;
    }

    .prog-f {
      height: 100%;
      background: #7B6CF6;
      width: 0;
      transition: width .1s linear;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 400;
      padding: 26px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }

    nav.sc {
      padding: 14px 56px;
      background: rgba(247, 255, 234, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(0, 0, 0, .07);
    }

    .nav-logo img {
      height: 28px;
      width: auto;
      transition: filter .3s;
    }

    nav.hero-nav:not(.sc) .nav-logo img {
      filter: brightness(0) invert(1);
    }

    .nav-r {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, .7);
      letter-spacing: .01em;
      transition: color .2s;
    }

    nav.sc .nav-links a {
      color: #888;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    nav.sc .nav-links a:hover,
    nav.sc .nav-links a.active {
      color: #1A1A1A;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 400;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
      padding: 8px 20px;
      border-radius: 100px;
      transition: all .2s;
      white-space: nowrap;
    }

    nav.sc .nav-cta {
      color: #1A1A1A;
      border-color: rgba(0, 0, 0, .18);
    }

    .nav-cta:hover {
      background: #fff;
      color: #1A1A1A;
      border-color: #fff;
    }

    nav.sc .nav-cta:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    .ham {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: all .2s;
      flex-shrink: 0;
    }

    nav.sc .ham {
      border-color: rgba(0, 0, 0, .14);
    }

    .ham span {
      display: block;
      height: 1px;
      background: #fff;
      transition: width .2s;
    }

    .ham span:nth-child(1) {
      width: 14px;
    }

    .ham span:nth-child(2) {
      width: 10px;
    }

    nav.sc .ham span {
      background: #1A1A1A;
    }

    body.mob-open #nav {
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    body.mob-open {
      overflow: hidden;
    }

    /* ── MOBILE NAV ── */
    .mob-nav {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 500;
      display: flex;
      flex-direction: column;
      clip-path: circle(0% at calc(100% - 44px) 42px);
      transition: clip-path .55s cubic-bezier(.16, 1, .3, 1);
      pointer-events: none;
    }

    .mob-nav.open {
      clip-path: circle(150% at calc(100% - 44px) 42px);
      pointer-events: all;
    }

    .mob-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      flex-shrink: 0;
    }

    .mob-top img {
      height: 26px;
    }

    .mob-x {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }

    .mob-x:hover {
      background: rgba(0, 0, 0, .05);
    }

    .mob-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 28px;
    }

    .mob-links a {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 9vw, 50px);
      color: #1A1A1A;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .07);
      display: block;
      text-align: right;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s, transform .4s, color .2s;
    }

    .mob-links a:hover {
      color: #7B6CF6;
    }

    .mob-nav.open .mob-links a {
      opacity: 1;
      transform: translateY(0);
    }

    .mob-nav.open .mob-links a:nth-child(1) {
      transition-delay: .12s;
    }

    .mob-nav.open .mob-links a:nth-child(2) {
      transition-delay: .19s;
    }

    .mob-nav.open .mob-links a:nth-child(3) {
      transition-delay: .26s;
    }

    .mob-nav.open .mob-links a:nth-child(4) {
      transition-delay: .33s;
    }

    .mob-foot {
      padding: 20px 28px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      opacity: 0;
      transition: opacity .3s ease .38s;
    }

    .mob-nav.open .mob-foot {
      opacity: 1;
    }

    .mob-contact {
      font-size: 12px;
      color: #888;
      line-height: 1.6;
    }

    .mob-cta {
      font-size: 13px;
      padding: 9px 18px;
      border-radius: 100px;
      background: #1A1A1A;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: background .2s;
    }

    .mob-cta:hover {
      background: #7B6CF6;
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .sec {
      padding: 100px 0;
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #ABABAB;
      display: block;
      margin-bottom: 14px;
    }

    .sec-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 3.8vw, 52px);
      line-height: 1.06;
      letter-spacing: -.022em;
      color: #1A1A1A;
    }

    .sec-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    hr.rule {
      display: none !important;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-dark:hover {
      opacity: .75;
    }

    .btn-link {
      font-size: 13px;
      color: #888;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-link svg {
      transition: transform .2s;
    }

    .btn-link:hover {
      color: #1A1A1A;
    }

    .btn-link:hover svg {
      transform: translateX(4px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media img,
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .15) 100%);
    }

    .hero-body {
      position: relative;
      z-index: 2;
      padding: 0 56px 60px;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 18px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .3s forwards;
    }

    .hero-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(52px, 6.5vw, 92px);
      line-height: .97;
      letter-spacing: -.03em;
      color: #fff;
      max-width: 900px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .5s forwards;
    }

    .hero-h em {
      font-style: italic;
      color: rgba(255, 255, 255, .6);
    }

    .hero-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-top: 36px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .7s forwards;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .55);
      max-width: 360px;
      line-height: 1.75;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-shrink: 0;
    }

    .btn-w {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #000000;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-w:hover {
      opacity: .85;
    }

    .btn-gw {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-gw svg {
      transition: transform .2s;
    }

    .btn-gw:hover {
      color: #fff;
    }

    .btn-gw:hover svg {
      transform: translateX(4px);
    }

    /* ── MARQUEE ── */
    .mq {
      overflow: hidden;
      position: relative;
      border-top: none;
      border-bottom: none;
      padding: 20px 0;
    }

    .mq::before,
    .mq::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .mq::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .mq::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .mq-t {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: tick 32s linear infinite;
      width: max-content;
    }

    .mq:hover .mq-t {
      animation-play-state: paused;
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .mq-b {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #C0C0B8;
      white-space: nowrap;
    }

    .mq-d {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .12);
      flex-shrink: 0;
    }

    /* ── REEL STRIP ── */
    .reel-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .reel-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 44px;
      padding: 0 56px;
      flex-wrap: wrap;
    }

    .reel-outer {
      position: relative;
      overflow: hidden;
    }

    .reel-outer::before,
    .reel-outer::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .reel-outer::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .reel-outer::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .reel-strip {
      display: flex;
      gap: 10px;
      animation: rscroll 38s linear infinite;
      width: max-content;
      padding: 0 56px;
    }

    .reel-sec:hover .reel-strip {
      animation-play-state: paused;
    }

    @keyframes rscroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .rc {
      width: 140px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .rc-inner {
      aspect-ratio: 9/16;
      position: relative;
      overflow: hidden;
    }

    .rc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-bg {
      transform: scale(1.06);
    }

    .rc-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(.8);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all .3s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-play {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .rc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
    }

    .rc:hover .rc-overlay {
      opacity: 1;
    }

    .rc-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 10px 9px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
    }

    /* reel bg colors */
    .rg1 {
      background: linear-gradient(150deg, #e0d5f5, #b8a8f0);
    }

    .rg2 {
      background: linear-gradient(150deg, #d5e8f0, #a8c8e8);
    }

    .rg3 {
      background: linear-gradient(150deg, #f0e5d5, #e8c8a0);
    }

    .rg4 {
      background: linear-gradient(150deg, #d5f0e0, #a0dbb8);
    }

    .rg5 {
      background: linear-gradient(150deg, #f0d5e8, #e8a0c8);
    }

    .rg6 {
      background: linear-gradient(150deg, #e8e0f0, #c8b8e8);
    }

    .rg7 {
      background: linear-gradient(150deg, #f0ead5, #d4bc80);
    }

    .rg8 {
      background: linear-gradient(150deg, #d5eaf0, #80bcd4);
    }

    /* ── LIGHTBOX ── */
    #lb {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(247, 255, 234, .65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    #lb.on {
      opacity: 1;
      pointer-events: all;
    }

    .lb-box {
      position: relative;
      width: min(700px, 90vw);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transform: scale(.94);
      transition: transform .35s cubic-bezier(.16, 1, .3, 1);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    }

    #lb.on .lb-box {
      transform: scale(1);
    }

    .lb-video {
      width: 100%;
      aspect-ratio: 16/9;
      background: #f7ffea;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }

    .lb-play-btn {
      width: 56px;
      height: 56px;
      background: #7B6CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-hint {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-info {
      padding: 18px 24px;
    }

    .lb-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      margin-bottom: 3px;
    }

    .lb-brand {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, .06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: background .2s;
    }

    .lb-close:hover {
      background: rgba(0, 0, 0, .12);
    }

    /* ── STATS ── */
    .stats-sec {
      padding: 72px 0;
      border-top: none;
      border-bottom: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(0, 0, 0, .08);
    }

    .stat:last-child {
      border: none;
    }

    .stat-n {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(42px, 5vw, 58px);
      color: #1A1A1A;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .stat-n em {
      font-style: normal;
      color: #7B6CF6;
    }

    .stat-l {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    /* ── SERVICES ── */
    .svc-sec {
      padding: 100px 0;
    }

    .svc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 56px;
      align-items: start;
    }

    .svc-img-col {
      position: sticky;
      top: 120px;
    }

    .svc-img-frame {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #E8ECE6;
    }

    .svc-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity .35s ease;
    }

    .svc-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .svc-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 26px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      cursor: default;
      transition: all .2s;
    }

    .svc-row-num {
      font-size: 11px;
      color: #CCC;
      width: 26px;
      flex-shrink: 0;
    }

    .svc-row-body {
      flex: 1;
    }

    .svc-row-name {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(24px, 2.6vw, 32px);
      color: #1A1A1A;
      line-height: 1.1;
      letter-spacing: -.015em;
      transition: color .25s;
    }

    .svc-row-tags {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 4px;
    }

    .svc-row-tags span {
      margin-right: 8px;
    }

    .svc-row-tags span::after {
      content: '·';
      margin-left: 8px;
      color: #DDD;
    }

    .svc-row-tags span:last-child::after {
      content: '';
    }

    .svc-row-arr {
      opacity: 0;
      transform: translateX(-6px);
      transition: all .25s;
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .svc-row:hover .svc-row-name,
    .svc-row.on .svc-row-name {
      color: #7B6CF6;
    }

    .svc-row:hover .svc-row-arr,
    .svc-row.on .svc-row-arr {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── WORK — editorial 2col offset ── */
    .work-sec {
      padding: 100px 0;
    }

    .work-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .work-col {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .work-col:nth-child(2) {
      padding-top: 80px;
    }

    .wi {
      cursor: pointer;
    }

    .wi-img {
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      margin-bottom: 14px;
    }

    .wi-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .wi:hover .wi-img img {
      transform: scale(1.04);
    }

    .wi:nth-child(1) .wi-img {
      aspect-ratio: 4/3;
    }

    .wi:nth-child(2) .wi-img {
      aspect-ratio: 3/4;
    }

    .wi-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .wi-brand {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-type {
      font-size: 11px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      line-height: 1.3;
      letter-spacing: -.01em;
    }

    /* ── CASE STUDIES ── */
    .cases-sec {
      padding: 100px 0;
    }

    .cases-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .c-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .c-track::-webkit-scrollbar {
      display: none;
    }

    .cc {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transition: all .3s ease;
    }

    .cc:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    }

    .cc-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .cc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .cc:hover .cc-img img {
      transform: scale(1.04);
    }

    .cc-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .cc-body {
      padding: 20px 22px 24px;
    }

    .cc-svc {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #7B6CF6;
      margin-bottom: 8px;
    }

    .cc-t {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 16px;
      color: #1A1A1A;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .cc-m {
      display: flex;
      gap: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .cc-mv {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 22px;
      color: #1A1A1A;
    }

    .cc-mv em {
      font-style: normal;
      color: #7B6CF6;
    }

    .cc-mk {
      font-size: 10px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
      margin-top: 1px;
    }

    .s-btns {
      display: flex;
      gap: 8px;
    }

    .s-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s;
      color: #888;
    }

    .s-btn:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    /* ── TESTIMONIALS horizontal slider ── */
    .testi-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .testi-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
      padding: 0 56px;
    }

    .testi-track-wrap {
      position: relative;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 56px;
      z-index: 2;
      pointer-events: none;
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .testi-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
      padding: 0 56px;
    }

    .testi-track::-webkit-scrollbar {
      display: none;
    }

    .tc {
      flex: 0 0 380px;
      scroll-snap-align: start;
      border-top: 1px solid rgba(0, 0, 0, .1);
      padding-top: 22px;
    }

    .tc-q {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-style: italic;
      font-size: 32px;
      color: #7B6CF6;
      line-height: 1;
      margin-bottom: 12px;
      opacity: .35;
    }

    .tc-txt {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tc-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #7B6CF6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }

    .tc-name {
      font-size: 13px;
      font-weight: 500;
      color: #1A1A1A;
    }

    .tc-role {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 1px;
    }

    /* ── CONTACT ── */
    .contact-sec {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .c-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(32px, 4vw, 50px);
      color: #1A1A1A;
      line-height: 1.04;
      letter-spacing: -.025em;
      margin: 14px 0 14px;
    }

    .c-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    .c-sub {
      font-size: 14px;
      color: #777;
      line-height: 1.75;
    }

    .c-details {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cd {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: #888;
    }

    .cd svg {
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fl {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .fi,
    .fsel,
    .fta {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: 6px;
      padding: 11px 14px;
      color: #1A1A1A;
      font-family: 'Switzer', sans-serif;
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }

    .fi:focus,
    .fsel:focus,
    .fta:focus {
      border-color: #7B6CF6;
      box-shadow: 0 0 0 3px rgba(123, 108, 246, .1);
    }

    .fi::placeholder,
    .fta::placeholder {
      color: #CCC;
    }

    .fta {
      resize: none;
      height: 88px;
      line-height: 1.6;
    }

    .fsel {
      background: #fff;
    }

    .fsub {
      background: #1A1A1A;
      color: #f7ffea;
      border: none;
      padding: 12px 26px;
      border-radius: 100px;
      font-family: 'Switzer', sans-serif;
      font-size: 13px;
      font-weight: 400;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      align-self: flex-start;
      transition: opacity .2s;
    }

    .fsub:hover {
      opacity: .75;
    }

    /* ── FOOTER ── */
    footer {
      background: #1A1A1A;
      padding: 60px 0 30px;
    }

    .ft-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .ft-logo {
      height: 24px;
      width: auto;
      filter: brightness(10) saturate(0);
      opacity: .6;
      margin-bottom: 14px;
      display: block;
    }

    .ft-tl {
      font-size: 13px;
      color: rgba(255, 255, 255, .28);
      line-height: 1.7;
      max-width: 240px;
    }

    .ft-socs {
      display: flex;
      gap: 9px;
      margin-top: 20px;
    }

    .fsoc {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .28);
      transition: all .2s;
    }

    .fsoc:hover {
      border-color: #7B6CF6;
      color: #A89AF9;
    }

    .fc-t {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      margin-bottom: 14px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .flinks a {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      transition: color .2s;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, .75);
    }

    .ft-bot {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
    }

    .ft-legal {
      display: flex;
      gap: 18px;
    }

    .ft-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
      transition: color .2s;
    }

    .ft-legal a:hover {
      color: rgba(255, 255, 255, .38);
    }

    /* ── FLOAT CTA ── */
    .fcta {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 100;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
      transform: translateY(60px);
      opacity: 0;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
    }

    .fcta.on {
      transform: translateY(0);
      opacity: 1;
    }

    .fcta:hover {
      background: #7B6CF6;
      box-shadow: 0 8px 24px rgba(123, 108, 246, .3);
    }

    /* ── REVEAL ── */
    .rev {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
    }

    .rev.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .1s;
    }

    .d2 {
      transition-delay: .2s;
    }

    .d3 {
      transition-delay: .3s;
    }

    .d4 {
      transition-delay: .4s;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── MOBILE ── */
    @media(max-width:960px) {

      nav,
      nav.sc {
        padding: 18px 24px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .wrap {
        padding: 0 24px;
      }

      .hero-body {
        padding: 0 24px 52px;
      }

      .reel-hdr {
        padding: 0 24px;
      }

      .reel-strip {
        padding: 0 24px;
      }

      .testi-hdr {
        padding: 0 24px;
      }

      .testi-track {
        padding: 0 24px;
      }

      .testi-track-wrap::before,
      .testi-track-wrap::after {
        display: none;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      .svc-layout {
        grid-template-columns: 1fr;
      }

      .svc-img-col {
        display: none;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .work-col:nth-child(2) {
        padding-top: 0;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .frow {
        grid-template-columns: 1fr;
      }

      .cc {
        flex: 0 0 300px;
      }

      .tc {
        flex: 0 0 300px;
      }
    }

    @media(max-width:600px) {
      .ft-top {
        grid-template-columns: 1fr;
      }

      .sec-h {
        font-size: clamp(28px, 8vw, 36px);
      }

      .hero-h {
        font-size: clamp(40px, 9vw, 64px);
      }
    }

    /* FORCE SWITZER EVERYWHERE */
    html,
    body,
    *,
    *::before,
    *::after {
      font-family: 'Switzer', sans-serif !important;
    }


    /* SERVICE PAGE ADDITIONS - reuse home visual system */
    .service-hero-bg,
    .service-art,
    .svc-art,
    .case-art,
    .testi-art {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .service-hero-bg {
      background: linear-gradient(135deg, #121212 0%, #27242F 42%, #7B6CF6 100%);
    }

    .service-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 72% 38%, rgba(247, 255, 234, .22), transparent 27%), linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 38%);
    }

    .hero-mock {
      position: absolute;
      right: 8vw;
      bottom: 12vh;
      width: min(360px, 32vw);
      aspect-ratio: 4/5;
      background: #fff;
      border: 1px solid rgba(123, 108, 246, .55);
      border-radius: 8px;
      padding: 14px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
      z-index: 1;
    }

    .hero-mock::before,
    .hero-mock::after {
      content: '';
      position: absolute;
      inset: 18px -20px -20px 20px;
      border: 2px solid #F2D260;
      border-radius: 8px;
      z-index: -1;
    }

    .hero-mock::after {
      inset: 34px -36px -36px 36px;
      border-color: #EA695E;
    }

    .hero-mock-media {
      height: 76%;
      border-radius: 5px;
      background: linear-gradient(145deg, #35273C, #7B6CF6 48%, #F0C85E);
      position: relative;
      overflow: hidden;
    }

    .hero-mock-media::before {
      content: '';
      position: absolute;
      left: 25%;
      right: 25%;
      top: 18%;
      bottom: 0;
      border-radius: 46% 46% 0 0;
      background: linear-gradient(160deg, #E5B08F, #5E443D);
    }

    .hero-mock-cap {
      position: absolute;
      left: 18%;
      right: 12%;
      bottom: 18%;
      background: rgba(0, 0, 0, .82);
      color: #fff;
      text-align: center;
      font-size: 18px;
      padding: 2px 8px;
    }

    .hero-mock-name {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.1;
      margin-top: 13px;
      color: #1A1A1A
    }

    .hero-mock-role {
      font-size: 12px;
      color: #777;
    }

    .service-art {
      background: linear-gradient(145deg, #DCE8EA, #A4BCCC);
    }

    .service-art.alt {
      background: linear-gradient(145deg, #E9D9F0, #B7A7DF);
    }

    .service-art.warm {
      background: linear-gradient(145deg, #F0E0CC, #D2A779);
    }

    .service-art.green {
      background: linear-gradient(145deg, #DDEDE2, #92BE9C);
    }

    .service-art::after,
    .svc-art::after,
    .case-art::after,
    .testi-art::after {
      content: '';
      position: absolute;
      left: 28%;
      right: 28%;
      top: 20%;
      bottom: 0;
      border-radius: 42% 42% 0 0;
      background: rgba(255, 255, 255, .48);
    }

    .svc-art {
      background: linear-gradient(145deg, #E8ECE6, #C6CEC1);
    }

    .case-art {
      background: linear-gradient(135deg, #2A2430, #7B6CF6);
    }

    .testi-art {
      background: linear-gradient(145deg, #F0E5D5, #C8B8E8);
    }

    .detail-sec {
      padding: 100px 0 120px;
      background: #f7ffea !important;
      position: relative !important;
      z-index: 2 !important;
      overflow: hidden;
      isolation: isolate;
    }

    .detail-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #f7ffea;
      z-index: -1;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 52px;
    }

    .detail-card {
      border-top: 1px solid rgba(0, 0, 0, .08);
      padding-top: 24px;
    }

    .detail-card h3 {
      font-size: 24px;
      line-height: 1.15;
      font-weight: 400;
      color: #1A1A1A;
      margin-bottom: 12px;
      letter-spacing: -.01em;
    }

    .detail-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .process-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
      margin-top: 56px;
    }

    .process-item {
      display: grid;
      grid-template-columns: 80px 1fr 1.2fr;
      gap: 28px;
      padding: 25px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      align-items: start;
    }

    .process-item span {
      font-size: 11px;
      color: #CCC;
    }

    .process-item h3 {
      font-size: 26px;
      line-height: 1.12;
      font-weight: 400;
    }

    .process-item p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .growth-panel {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .07);
      border-radius: 8px;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: center;
    }

    .growth-faces {
      display: flex;
      margin-top: 26px;
    }

    .growth-face {
      width: 86px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: linear-gradient(145deg, #E4B08D, #7B6CF6);
      border: 4px solid #fff;
      margin-left: -13px;
    }

    .growth-face:first-child {
      margin-left: 0;
      width: 110px;
    }

    .growth-metric {
      padding: 20px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .growth-metric strong {
      font-size: 48px;
      line-height: 1;
      color: #7B6CF6;
      font-weight: 400;
      display: block;
    }

    .growth-metric span {
      font-size: 12px;
      font-weight: 500;
    }

    .cc-img .case-art {
      height: 100%;
    }

    .svc-img-frame .svc-art {
      height: 100%;
    }

    .wi-img .service-art {
      height: 100%;
    }

    .tc .testi-art {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media(max-width:960px) {
      .hero-mock {
        display: none
      }

      .detail-grid,
      .growth-panel {
        grid-template-columns: 1fr
      }

      .process-item {
        grid-template-columns: 1fr;
        gap: 8px
      }

      .detail-sec {
        padding: 72px 0 96px
      }
    }




    /* FINAL DESIGN OVERRIDES */

    /* Typography */
    .hero-h {
      font-size: clamp(44px, 5vw, 72px) !important;
      max-width: 820px !important;
      line-height: .95 !important;
      font-weight: 600 !important;
    }

    .sec-h,
    .c-h,
    .wi-title,
    .svc-row-name,
    .stat-n {
      font-weight: 600 !important;
    }

    .sec {
      padding: 140px 0 !important;
    }



    /* Work section minimal */
    .work-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 24px !important;
    }

    .wi-img {
      border-radius: 16px !important;
      overflow: hidden !important;
    }

    .wi-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    .work-col:nth-child(2) {
      padding-top: 40px !important;
    }

    /* Services */
    .svc-layout {
      gap: 50px !important;
    }

    .svc-row {
      padding: 32px 0 !important;
    }

    /* Footer visibility */
    .ft-copy,
    .ft-legal a,
    .ft-tl,
    .flinks a,
    .fc-t {
      color: rgba(255, 255, 255, .88) !important;
    }

    /* CTA before footer */
    .prefooter-cta {
      min-height: 100svh;
      background: #111;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .prefooter-cta h2 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: .95;
      margin-bottom: 20px;
    }

    .prefooter-cta a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      border-bottom: 1px solid #fff;
      padding-bottom: 4px;
    }



    /* OUR WORK */
    .work-grid {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 24px !important
    }

    .work-col {
      display: contents !important
    }

    .work-col:nth-child(2) {
      padding-top: 0 !important
    }

    .wi {
      position: relative;
      border-radius: 18px;
      overflow: hidden
    }

    .wi-img {
      margin-bottom: 0 !important;
      aspect-ratio: 4/5 !important
    }

    .wi-meta,
    .wi-title {
      position: absolute;
      z-index: 3;
      color: #fff
    }

    .wi-meta {
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: space-between
    }

    .wi-title {
      left: 18px;
      bottom: 18px;
      right: 18px;
      font-size: 20px !important
    }

    .wi::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15))
    }

    .wi-brand,
    .wi-type {
      color: #fff !important
    }

    /* TESTIMONIALS */
    .testi-sec {
      overflow: hidden !important
    }

    .testi-hdr,
    .testi-track-wrap {
      max-width: 1200px;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 56px !important;
      padding-right: 56px !important
    }

    .testi-hdr {
      margin-bottom: 44px !important
    }

    .testi-track-wrap {
      overflow: hidden
    }

    .testi-track-wrap::before {
      display: none !important
    }

    .testi-track-wrap::after {
      right: 56px !important;
      width: 90px !important;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%) !important
    }

    .testi-track {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 24px !important;
      padding: 0 !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .tc {
      flex: 0 0 calc((100% - 48px)/3) !important;
      min-width: calc((100% - 48px)/3) !important;
      border-top: 0 !important;
      padding-top: 0 !important;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .tc-q {
      margin-bottom: 8px !important
    }

    .testi-sec .rev,
    .cases-sec .rev {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important
    }

    /* Case studies */
    .cases-sec {
      overflow: hidden !important
    }

    .c-track {
      gap: 26px !important;
      padding: 0 0 12px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .c-track::after {
      content: '';
      flex: 0 0 1px
    }

    .cc {
      flex: 0 0 calc((100% - 52px)/3) !important;
      min-width: calc((100% - 52px)/3) !important;
      scroll-snap-align: start;
      transform: none !important;
      box-shadow: none !important
    }

    .cc:hover {
      transform: none !important;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .05) !important
    }

    .cc-img {
      height: 228px !important
    }

    .cc-img img {
      transform: none !important
    }

    .cc:hover .cc-img img {
      transform: none !important
    }

    .cases-sec .wrap {
      position: relative
    }

    .cases-sec .wrap::after {
      content: '';
      position: absolute;
      right: 56px;
      top: 132px;
      bottom: 0;
      width: 86px;
      pointer-events: none;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%)
    }

    /* CTA */
    .prefooter-cta {
      min-height: 100svh !important;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-bottom: 0 !important;
      transform: none !important;
      transition: none !important;
    }

    .prefooter-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .58)), url('https://images.unsplash.com/photo-1516726817505-f5ed825624d8?w=1800&q=80') center/cover;
      z-index: -1
    }

    .prefooter-cta h2 {
      font-size: clamp(42px, 5.8vw, 78px) !important;
      max-width: 760px;
      text-align: center;
      line-height: .98
    }

    .prefooter-cta p {
      display: none !important
    }

    .prefooter-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      padding: 13px 24px;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s
    }

    .prefooter-cta a:hover {
      background: #fff;
      color: #111;
      border-color: #fff
    }

    body {
      padding-bottom: var(--footer-h, 0px);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: #f7ffea;
      z-index: -2;
      pointer-events: none
    }

    section,
    .mq,
    .hero,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec,
    .prefooter-cta {
      position: relative;
      z-index: 1
    }

    .mq,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec {
      background: #f7ffea
    }

    .hero,
    .prefooter-cta {
      background: #111
    }

    .prefooter-cta {
      z-index: 2
    }

    hr.rule {
      display: none !important
    }

    .mq,
    .stats-sec {
      border-top: 0 !important;
      border-bottom: 0 !important
    }

    .svc-list,
    .svc-row,
    .cc,
    .cc-m,
    .ft-bot {
      border-color: rgba(0, 0, 0, .045) !important
    }


    footer {
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      padding: clamp(42px, 6vw, 72px) 0 30px !important;
    }

    @media(max-width:1200px) {
      .work-grid {
        grid-template-columns: repeat(3, 1fr) !important
      }
    }

    @media(max-width:960px) {
      .work-grid {
        grid-template-columns: 1fr !important
      }

      .tc {
        flex: 0 0 100% !important;
        min-width: 100% !important
      }

      .cc {
        flex: 0 0 86% !important;
        min-width: 86% !important
      }

      .testi-hdr,
      .testi-track-wrap {
        padding-left: 24px !important;
        padding-right: 24px !important
      }

      .testi-track-wrap::after {
        right: 24px !important
      }

      .cases-sec .wrap::after {
        right: 24px
      }
    }

    /* Draggable tracks */
    .c-track,
    .testi-track,
    .reel-outer {
      touch-action: pan-y;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }

    .c-track.dragging,
    .testi-track.dragging,
    .reel-outer.dragging {
      cursor: grabbing;
      scroll-snap-type: none !important
    }

    .c-track.dragging *,
    .testi-track.dragging *,
    .reel-outer.dragging * {
      pointer-events: none
    }

    .reel-outer {
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scrollbar-width: none
    }

    .reel-outer::-webkit-scrollbar,
    .c-track::-webkit-scrollbar,
    .testi-track::-webkit-scrollbar {
      display: none
    }

    .reel-outer.dragging .reel-strip,
    .reel-outer:active .reel-strip {
      animation-play-state: paused
    }



    /* ── RESET ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      background: #f7ffea;
      color: #1A1A1A;
      font-family: 'Switzer', -apple-system, 'Helvetica Neue', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ── SWITZER font ── */
    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-300-normal.woff2') format('woff2');
      font-weight: 300;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-400-normal.woff2') format('woff2');
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-500-normal.woff2') format('woff2');
      font-weight: 500;
      font-display: swap;
    }

    /* ── CURSOR ── */
    .cur,
    .cur-r {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
    }

    .cur {
      width: 7px;
      height: 7px;
      background: #7B6CF6;
      transition: transform .15s ease;
    }

    .cur-r {
      width: 26px;
      height: 26px;
      border: 1px solid rgba(123, 108, 246, .4);
      z-index: 9998;
      transition: transform .45s cubic-bezier(.16, 1, .3, 1);
    }

    @media(pointer:coarse) {

      .cur,
      .cur-r {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    @media(pointer:fine) {
      body {
        cursor: none;
      }
    }

    /* ── PROGRESS ── */
    .prog {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      z-index: 600;
    }

    .prog-f {
      height: 100%;
      background: #7B6CF6;
      width: 0;
      transition: width .1s linear;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 400;
      padding: 26px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }

    nav.sc {
      padding: 14px 56px;
      background: rgba(247, 255, 234, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(0, 0, 0, .07);
    }

    .nav-logo img {
      height: 28px;
      width: auto;
      transition: filter .3s;
    }

    nav.hero-nav:not(.sc) .nav-logo img {
      filter: brightness(0) invert(1);
    }

    .nav-r {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, .7);
      letter-spacing: .01em;
      transition: color .2s;
    }

    nav.sc .nav-links a {
      color: #888;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    nav.sc .nav-links a:hover,
    nav.sc .nav-links a.active {
      color: #1A1A1A;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 400;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
      padding: 8px 20px;
      border-radius: 100px;
      transition: all .2s;
      white-space: nowrap;
    }

    nav.sc .nav-cta {
      color: #1A1A1A;
      border-color: rgba(0, 0, 0, .18);
    }

    .nav-cta:hover {
      background: #fff;
      color: #1A1A1A;
      border-color: #fff;
    }

    nav.sc .nav-cta:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    .ham {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: all .2s;
      flex-shrink: 0;
    }

    nav.sc .ham {
      border-color: rgba(0, 0, 0, .14);
    }

    .ham span {
      display: block;
      height: 1px;
      background: #fff;
      transition: width .2s;
    }

    .ham span:nth-child(1) {
      width: 14px;
    }

    .ham span:nth-child(2) {
      width: 10px;
    }

    nav.sc .ham span {
      background: #1A1A1A;
    }

    body.mob-open #nav {
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    body.mob-open {
      overflow: hidden;
    }

    /* ── MOBILE NAV ── */
    .mob-nav {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 500;
      display: flex;
      flex-direction: column;
      clip-path: circle(0% at calc(100% - 44px) 42px);
      transition: clip-path .55s cubic-bezier(.16, 1, .3, 1);
      pointer-events: none;
    }

    .mob-nav.open {
      clip-path: circle(150% at calc(100% - 44px) 42px);
      pointer-events: all;
    }

    .mob-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      flex-shrink: 0;
    }

    .mob-top img {
      height: 26px;
    }

    .mob-x {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }

    .mob-x:hover {
      background: rgba(0, 0, 0, .05);
    }

    .mob-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 28px;
    }

    .mob-links a {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 9vw, 50px);
      color: #1A1A1A;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .07);
      display: block;
      text-align: right;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s, transform .4s, color .2s;
    }

    .mob-links a:hover {
      color: #7B6CF6;
    }

    .mob-nav.open .mob-links a {
      opacity: 1;
      transform: translateY(0);
    }

    .mob-nav.open .mob-links a:nth-child(1) {
      transition-delay: .12s;
    }

    .mob-nav.open .mob-links a:nth-child(2) {
      transition-delay: .19s;
    }

    .mob-nav.open .mob-links a:nth-child(3) {
      transition-delay: .26s;
    }

    .mob-nav.open .mob-links a:nth-child(4) {
      transition-delay: .33s;
    }

    .mob-foot {
      padding: 20px 28px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      opacity: 0;
      transition: opacity .3s ease .38s;
    }

    .mob-nav.open .mob-foot {
      opacity: 1;
    }

    .mob-contact {
      font-size: 12px;
      color: #888;
      line-height: 1.6;
    }

    .mob-cta {
      font-size: 13px;
      padding: 9px 18px;
      border-radius: 100px;
      background: #1A1A1A;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: background .2s;
    }

    .mob-cta:hover {
      background: #7B6CF6;
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .sec {
      padding: 100px 0;
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #ABABAB;
      display: block;
      margin-bottom: 14px;
    }

    .sec-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 3.8vw, 52px);
      line-height: 1.06;
      letter-spacing: -.022em;
      color: #1A1A1A;
    }

    .sec-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    hr.rule {
      display: none !important;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-dark:hover {
      opacity: .75;
    }

    .btn-link {
      font-size: 13px;
      color: #888;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-link svg {
      transition: transform .2s;
    }

    .btn-link:hover {
      color: #1A1A1A;
    }

    .btn-link:hover svg {
      transform: translateX(4px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media img,
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .15) 100%);
    }

    .hero-body {
      position: relative;
      z-index: 2;
      padding: 0 56px 60px;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 18px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .3s forwards;
    }

    .hero-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(52px, 6.5vw, 92px);
      line-height: .97;
      letter-spacing: -.03em;
      color: #fff;
      max-width: 900px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .5s forwards;
    }

    .hero-h em {
      font-style: italic;
      color: rgba(255, 255, 255, .6);
    }

    .hero-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-top: 36px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .7s forwards;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .55);
      max-width: 360px;
      line-height: 1.75;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-shrink: 0;
    }

    .btn-w {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #000000;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-w:hover {
      opacity: .85;
    }

    .btn-gw {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-gw svg {
      transition: transform .2s;
    }

    .btn-gw:hover {
      color: #fff;
    }

    .btn-gw:hover svg {
      transform: translateX(4px);
    }

    /* ── MARQUEE ── */
    .mq {
      overflow: hidden;
      position: relative;
      border-top: none;
      border-bottom: none;
      padding: 20px 0;
    }

    .mq::before,
    .mq::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .mq::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .mq::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .mq-t {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: tick 32s linear infinite;
      width: max-content;
    }

    .mq:hover .mq-t {
      animation-play-state: paused;
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .mq-b {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #C0C0B8;
      white-space: nowrap;
    }

    .mq-d {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .12);
      flex-shrink: 0;
    }

    /* ── REEL STRIP ── */
    .reel-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .reel-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 44px;
      padding: 0 56px;
      flex-wrap: wrap;
    }

    .reel-outer {
      position: relative;
      overflow: hidden;
    }

    .reel-outer::before,
    .reel-outer::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .reel-outer::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .reel-outer::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .reel-strip {
      display: flex;
      gap: 10px;
      animation: rscroll 38s linear infinite;
      width: max-content;
      padding: 0 56px;
    }

    .reel-sec:hover .reel-strip {
      animation-play-state: paused;
    }

    @keyframes rscroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .rc {
      width: 140px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .rc-inner {
      aspect-ratio: 9/16;
      position: relative;
      overflow: hidden;
    }

    .rc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-bg {
      transform: scale(1.06);
    }

    .rc-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(.8);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all .3s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-play {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .rc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
    }

    .rc:hover .rc-overlay {
      opacity: 1;
    }

    .rc-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 10px 9px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
    }

    /* reel bg colors */
    .rg1 {
      background: linear-gradient(150deg, #e0d5f5, #b8a8f0);
    }

    .rg2 {
      background: linear-gradient(150deg, #d5e8f0, #a8c8e8);
    }

    .rg3 {
      background: linear-gradient(150deg, #f0e5d5, #e8c8a0);
    }

    .rg4 {
      background: linear-gradient(150deg, #d5f0e0, #a0dbb8);
    }

    .rg5 {
      background: linear-gradient(150deg, #f0d5e8, #e8a0c8);
    }

    .rg6 {
      background: linear-gradient(150deg, #e8e0f0, #c8b8e8);
    }

    .rg7 {
      background: linear-gradient(150deg, #f0ead5, #d4bc80);
    }

    .rg8 {
      background: linear-gradient(150deg, #d5eaf0, #80bcd4);
    }

    /* ── LIGHTBOX ── */
    #lb {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(247, 255, 234, .65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    #lb.on {
      opacity: 1;
      pointer-events: all;
    }

    .lb-box {
      position: relative;
      width: min(700px, 90vw);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transform: scale(.94);
      transition: transform .35s cubic-bezier(.16, 1, .3, 1);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    }

    #lb.on .lb-box {
      transform: scale(1);
    }

    .lb-video {
      width: 100%;
      aspect-ratio: 16/9;
      background: #f7ffea;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }

    .lb-play-btn {
      width: 56px;
      height: 56px;
      background: #7B6CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-hint {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-info {
      padding: 18px 24px;
    }

    .lb-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      margin-bottom: 3px;
    }

    .lb-brand {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, .06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: background .2s;
    }

    .lb-close:hover {
      background: rgba(0, 0, 0, .12);
    }

    /* ── STATS ── */
    .stats-sec {
      padding: 72px 0;
      border-top: none;
      border-bottom: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(0, 0, 0, .08);
    }

    .stat:last-child {
      border: none;
    }

    .stat-n {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(42px, 5vw, 58px);
      color: #1A1A1A;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .stat-n em {
      font-style: normal;
      color: #7B6CF6;
    }

    .stat-l {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    /* ── SERVICES ── */
    .svc-sec {
      padding: 100px 0;
    }

    .svc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 56px;
      align-items: start;
    }

    .svc-img-col {
      position: sticky;
      top: 120px;
    }

    .svc-img-frame {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #E8ECE6;
    }

    .svc-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity .35s ease;
    }

    .svc-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .svc-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 26px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      cursor: default;
      transition: all .2s;
    }

    .svc-row-num {
      font-size: 11px;
      color: #CCC;
      width: 26px;
      flex-shrink: 0;
    }

    .svc-row-body {
      flex: 1;
    }

    .svc-row-name {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(24px, 2.6vw, 32px);
      color: #1A1A1A;
      line-height: 1.1;
      letter-spacing: -.015em;
      transition: color .25s;
    }

    .svc-row-tags {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 4px;
    }

    .svc-row-tags span {
      margin-right: 8px;
    }

    .svc-row-tags span::after {
      content: '·';
      margin-left: 8px;
      color: #DDD;
    }

    .svc-row-tags span:last-child::after {
      content: '';
    }

    .svc-row-arr {
      opacity: 0;
      transform: translateX(-6px);
      transition: all .25s;
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .svc-row:hover .svc-row-name,
    .svc-row.on .svc-row-name {
      color: #7B6CF6;
    }

    .svc-row:hover .svc-row-arr,
    .svc-row.on .svc-row-arr {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── WORK — editorial 2col offset ── */
    .work-sec {
      padding: 100px 0;
    }

    .work-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .work-col {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .work-col:nth-child(2) {
      padding-top: 80px;
    }

    .wi {
      cursor: pointer;
    }

    .wi-img {
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      margin-bottom: 14px;
    }

    .wi-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .wi:hover .wi-img img {
      transform: scale(1.04);
    }

    .wi:nth-child(1) .wi-img {
      aspect-ratio: 4/3;
    }

    .wi:nth-child(2) .wi-img {
      aspect-ratio: 3/4;
    }

    .wi-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .wi-brand {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-type {
      font-size: 11px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      line-height: 1.3;
      letter-spacing: -.01em;
    }

    /* ── CASE STUDIES ── */
    .cases-sec {
      padding: 100px 0;
    }

    .cases-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .c-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .c-track::-webkit-scrollbar {
      display: none;
    }

    .cc {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transition: all .3s ease;
    }

    .cc:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    }

    .cc-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .cc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .cc:hover .cc-img img {
      transform: scale(1.04);
    }

    .cc-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .cc-body {
      padding: 20px 22px 24px;
    }

    .cc-svc {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #7B6CF6;
      margin-bottom: 8px;
    }

    .cc-t {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 16px;
      color: #1A1A1A;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .cc-m {
      display: flex;
      gap: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .cc-mv {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 22px;
      color: #1A1A1A;
    }

    .cc-mv em {
      font-style: normal;
      color: #7B6CF6;
    }

    .cc-mk {
      font-size: 10px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
      margin-top: 1px;
    }

    .s-btns {
      display: flex;
      gap: 8px;
    }

    .s-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s;
      color: #888;
    }

    .s-btn:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    /* ── TESTIMONIALS horizontal slider ── */
    .testi-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .testi-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
      padding: 0 56px;
    }

    .testi-track-wrap {
      position: relative;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 56px;
      z-index: 2;
      pointer-events: none;
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .testi-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
      padding: 0 56px;
    }

    .testi-track::-webkit-scrollbar {
      display: none;
    }

    .tc {
      flex: 0 0 380px;
      scroll-snap-align: start;
      border-top: 1px solid rgba(0, 0, 0, .1);
      padding-top: 22px;
    }

    .tc-q {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-style: italic;
      font-size: 32px;
      color: #7B6CF6;
      line-height: 1;
      margin-bottom: 12px;
      opacity: .35;
    }

    .tc-txt {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tc-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #7B6CF6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }

    .tc-name {
      font-size: 13px;
      font-weight: 500;
      color: #1A1A1A;
    }

    .tc-role {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 1px;
    }

    /* ── CONTACT ── */
    .contact-sec {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .c-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(32px, 4vw, 50px);
      color: #1A1A1A;
      line-height: 1.04;
      letter-spacing: -.025em;
      margin: 14px 0 14px;
    }

    .c-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    .c-sub {
      font-size: 14px;
      color: #777;
      line-height: 1.75;
    }

    .c-details {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cd {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: #888;
    }

    .cd svg {
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fl {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .fi,
    .fsel,
    .fta {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: 6px;
      padding: 11px 14px;
      color: #1A1A1A;
      font-family: 'Switzer', sans-serif;
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }

    .fi:focus,
    .fsel:focus,
    .fta:focus {
      border-color: #7B6CF6;
      box-shadow: 0 0 0 3px rgba(123, 108, 246, .1);
    }

    .fi::placeholder,
    .fta::placeholder {
      color: #CCC;
    }

    .fta {
      resize: none;
      height: 88px;
      line-height: 1.6;
    }

    .fsel {
      background: #fff;
    }

    .fsub {
      background: #1A1A1A;
      color: #f7ffea;
      border: none;
      padding: 12px 26px;
      border-radius: 100px;
      font-family: 'Switzer', sans-serif;
      font-size: 13px;
      font-weight: 400;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      align-self: flex-start;
      transition: opacity .2s;
    }

    .fsub:hover {
      opacity: .75;
    }

    /* ── FOOTER ── */
    footer {
      background: #1A1A1A;
      padding: 60px 0 30px;
    }

    .ft-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .ft-logo {
      height: 24px;
      width: auto;
      filter: brightness(10) saturate(0);
      opacity: .6;
      margin-bottom: 14px;
      display: block;
    }

    .ft-tl {
      font-size: 13px;
      color: rgba(255, 255, 255, .28);
      line-height: 1.7;
      max-width: 240px;
    }

    .ft-socs {
      display: flex;
      gap: 9px;
      margin-top: 20px;
    }

    .fsoc {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .28);
      transition: all .2s;
    }

    .fsoc:hover {
      border-color: #7B6CF6;
      color: #A89AF9;
    }

    .fc-t {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      margin-bottom: 14px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .flinks a {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      transition: color .2s;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, .75);
    }

    .ft-bot {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
    }

    .ft-legal {
      display: flex;
      gap: 18px;
    }

    .ft-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
      transition: color .2s;
    }

    .ft-legal a:hover {
      color: rgba(255, 255, 255, .38);
    }

    /* ── FLOAT CTA ── */
    .fcta {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 100;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
      transform: translateY(60px);
      opacity: 0;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
    }

    .fcta.on {
      transform: translateY(0);
      opacity: 1;
    }

    .fcta:hover {
      background: #7B6CF6;
      box-shadow: 0 8px 24px rgba(123, 108, 246, .3);
    }

    /* ── REVEAL ── */
    .rev {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
    }

    .rev.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .1s;
    }

    .d2 {
      transition-delay: .2s;
    }

    .d3 {
      transition-delay: .3s;
    }

    .d4 {
      transition-delay: .4s;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── MOBILE ── */
    @media(max-width:960px) {

      nav,
      nav.sc {
        padding: 18px 24px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .wrap {
        padding: 0 24px;
      }

      .hero-body {
        padding: 0 24px 52px;
      }

      .reel-hdr {
        padding: 0 24px;
      }

      .reel-strip {
        padding: 0 24px;
      }

      .testi-hdr {
        padding: 0 24px;
      }

      .testi-track {
        padding: 0 24px;
      }

      .testi-track-wrap::before,
      .testi-track-wrap::after {
        display: none;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      .svc-layout {
        grid-template-columns: 1fr;
      }

      .svc-img-col {
        display: none;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .work-col:nth-child(2) {
        padding-top: 0;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .frow {
        grid-template-columns: 1fr;
      }

      .cc {
        flex: 0 0 300px;
      }

      .tc {
        flex: 0 0 300px;
      }
    }

    @media(max-width:600px) {
      .ft-top {
        grid-template-columns: 1fr;
      }

      .sec-h {
        font-size: clamp(28px, 8vw, 36px);
      }

      .hero-h {
        font-size: clamp(40px, 9vw, 64px);
      }
    }

    /* FORCE SWITZER EVERYWHERE */
    html,
    body,
    *,
    *::before,
    *::after {
      font-family: 'Switzer', sans-serif !important;
    }


    /* SERVICE PAGE ADDITIONS - reuse home visual system */
    .service-hero-bg,
    .service-art,
    .svc-art,
    .case-art,
    .testi-art {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .service-hero-bg {
      background: linear-gradient(135deg, #121212 0%, #27242F 42%, #7B6CF6 100%);
    }

    .service-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 72% 38%, rgba(247, 255, 234, .22), transparent 27%), linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 38%);
    }

    .hero-mock {
      position: absolute;
      right: 7vw;
      bottom: 9vh;
      width: min(390px, 33vw);
      aspect-ratio: 4/5;
      z-index: 1;
      overflow: visible;
    }

    .hero-card {
      position: absolute;
      inset: 0;
      background: #fff;
      border: 2px solid #6DA8FF;
      border-radius: 8px;
      padding: 14px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
      overflow: visible;
      animation: mockCycle 12s infinite cubic-bezier(.16, 1, .3, 1);
    }

    .hero-card:nth-child(2) {
      border-color: #F2D260;
      animation-delay: -4s;
    }

    .hero-card:nth-child(3) {
      border-color: #EA695E;
      animation-delay: -8s;
    }

    @keyframes mockCycle {

      0%,
      27% {
        opacity: 1;
        z-index: 3;
        transform: translate(0, 0) scale(1)
      }

      33%,
      60% {
        opacity: .92;
        z-index: 2;
        transform: translate(22px, 22px) scale(.985)
      }

      66%,
      94% {
        opacity: .72;
        z-index: 1;
        transform: translate(42px, 42px) scale(.97)
      }

      100% {
        opacity: 1;
        z-index: 3;
        transform: translate(0, 0) scale(1)
      }
    }

    .hero-mock-media {
      height: 76%;
      border-radius: 5px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #35273C, #7B6CF6 48%, #F0C85E);
    }

    .hero-card:nth-child(2) .hero-mock-media {
      background: linear-gradient(145deg, #1C3340, #62B6CB 48%, #F6D365)
    }

    .hero-card:nth-child(3) .hero-mock-media {
      background: linear-gradient(145deg, #3A2335, #D56A9F 48%, #F1C27D)
    }

    .hero-mock-media::before {
      content: '';
      position: absolute;
      left: 25%;
      right: 25%;
      top: 18%;
      bottom: 0;
      border-radius: 46% 46% 0 0;
      background: linear-gradient(160deg, #E5B08F, #5E443D);
    }

    .hero-card:nth-child(2) .hero-mock-media::before {
      left: 18%;
      right: 34%;
      background: linear-gradient(160deg, #D8BDA6, #4B3D36)
    }

    .hero-card:nth-child(3) .hero-mock-media::before {
      left: 35%;
      right: 18%;
      background: linear-gradient(160deg, #F0BE9F, #6D4841)
    }

    .hero-mock-cap {
      position: absolute;
      left: 18%;
      right: 12%;
      bottom: 18%;
      background: rgba(0, 0, 0, .82);
      color: #fff;
      text-align: center;
      font-size: 18px;
      padding: 2px 8px;
    }

    .hero-mock-name {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.1;
      margin-top: 13px;
      color: #1A1A1A
    }

    .hero-mock-role {
      font-size: 12px;
      color: #777;
    }

    .service-art {
      background: linear-gradient(145deg, #DCE8EA, #A4BCCC);
    }

    .service-art.alt {
      background: linear-gradient(145deg, #E9D9F0, #B7A7DF);
    }

    .service-art.warm {
      background: linear-gradient(145deg, #F0E0CC, #D2A779);
    }

    .service-art.green {
      background: linear-gradient(145deg, #DDEDE2, #92BE9C);
    }

    .service-art::after,
    .svc-art::after,
    .case-art::after,
    .testi-art::after {
      content: '';
      position: absolute;
      left: 28%;
      right: 28%;
      top: 20%;
      bottom: 0;
      border-radius: 42% 42% 0 0;
      background: rgba(255, 255, 255, .48);
    }

    .svc-art {
      background: linear-gradient(145deg, #E8ECE6, #C6CEC1);
    }

    .case-art {
      background: linear-gradient(135deg, #2A2430, #7B6CF6);
    }

    .testi-art {
      background: linear-gradient(145deg, #F0E5D5, #C8B8E8);
    }

    .detail-sec {
      padding: 100px 0 120px;
      background: #f7ffea !important;
      position: relative !important;
      z-index: 2 !important;
      overflow: hidden;
      isolation: isolate;
    }

    .detail-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #f7ffea;
      z-index: -1;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 52px;
    }

    .detail-card {
      border-top: 1px solid rgba(0, 0, 0, .08);
      padding-top: 24px;
    }

    .detail-card h3 {
      font-size: 24px;
      line-height: 1.15;
      font-weight: 400;
      color: #1A1A1A;
      margin-bottom: 12px;
      letter-spacing: -.01em;
    }

    .detail-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .process-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
      margin-top: 56px;
    }

    .process-item {
      display: grid;
      grid-template-columns: 80px 1fr 1.2fr;
      gap: 28px;
      padding: 25px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      align-items: start;
    }

    .process-item span {
      font-size: 11px;
      color: #CCC;
    }

    .process-item h3 {
      font-size: 26px;
      line-height: 1.12;
      font-weight: 400;
    }

    .process-item p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .growth-slide {
      flex: 0 0 min(1180px, 86vw);
      scroll-snap-align: center;
      background: #D7E8FF;
      border-radius: 8px;
      padding: 58px 68px;
      display: grid;
      grid-template-columns: 1.05fr .9fr;
      gap: 56px;
      align-items: center;
      border: 1px solid rgba(0, 0, 0, .04);
    }

    .growth-slide.koskii {
      background: #FFF2CB
    }

    .growth-slide.slurrp {
      background: #E6F2DD
    }

    .growth-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 32px;
      font-weight: 500;
      color: #424242;
      margin-bottom: 42px
    }

    .growth-logo {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2E5CEB, #12D8A0)
    }

    .growth-copy {
      font-size: 16px;
      color: #085ECF;
      line-height: 1.7;
      max-width: 440px
    }

    .growth-faces {
      display: flex;
      align-items: end;
      margin-top: 42px
    }

    .growth-face {
      width: 92px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: linear-gradient(145deg, #D8B199, #7B6CF6);
      border: 5px solid rgba(255, 255, 255, .75);
      margin-left: -12px
    }

    .growth-face:first-child {
      margin-left: 0;
      width: 128px
    }

    .growth-face:nth-child(2) {
      width: 62px
    }

    .growth-face:nth-child(3) {
      background: linear-gradient(145deg, #9EBCD1, #513F9D)
    }

    .growth-face:nth-child(4) {
      background: linear-gradient(145deg, #F0C885, #926146)
    }

    .growth-metric {
      display: grid;
      grid-template-columns: 1fr 64px;
      gap: 28px;
      align-items: center;
      padding: 30px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .32)
    }

    .growth-metric strong {
      font-size: 64px;
      line-height: 1;
      color: #2F5DEA;
      font-weight: 400;
      display: block;
      letter-spacing: -.04em
    }

    .growth-metric span {
      font-size: 15px;
      font-weight: 500;
      color: #111
    }

    .growth-bolt {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #FFC431;
      display: grid;
      place-items: center;
      color: #111;
      font-size: 26px
    }

    .cc-img .case-art {
      height: 100%;
    }

    .svc-img-frame .svc-art {
      height: 100%;
    }

    .wi-img .service-art {
      height: 100%;
    }

    .tc .testi-art {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media(max-width:960px) {

      .detail-grid,
      .growth-panel,
      .growth-slide {
        grid-template-columns: 1fr
      }

      .growth-slide {
        padding: 32px 24px;
        flex-basis: 86vw;
        gap: 28px
      }

      .growth-brand {
        font-size: 26px;
        margin-bottom: 26px
      }

      .growth-metric {
        grid-template-columns: 1fr 48px;
        padding: 22px 0
      }

      .growth-metric strong {
        font-size: 42px
      }

      .growth-bolt {
        width: 48px;
        height: 48px;
        font-size: 20px
      }

      .process-item {
        grid-template-columns: 1fr;
        gap: 8px
      }

      .detail-sec {
        padding: 72px 0 96px
      }
    }




    /* FINAL DESIGN OVERRIDES */

    /* Typography */
    .hero-h {
      font-size: clamp(44px, 5vw, 72px) !important;
      max-width: 820px !important;
      line-height: .95 !important;
      font-weight: 600 !important;
    }

    .sec-h,
    .c-h,
    .wi-title,
    .svc-row-name,
    .stat-n {
      font-weight: 600 !important;
    }

    .sec {
      padding: 140px 0 !important;
    }



    /* Work section minimal */
    .work-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 24px !important;
    }

    .wi-img {
      border-radius: 16px !important;
      overflow: hidden !important;
    }

    .wi-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    .work-col:nth-child(2) {
      padding-top: 40px !important;
    }

    /* Services */
    .svc-layout {
      gap: 50px !important;
    }

    .svc-row {
      padding: 32px 0 !important;
    }

    /* Footer visibility */
    .ft-copy,
    .ft-legal a,
    .ft-tl,
    .flinks a,
    .fc-t {
      color: rgba(255, 255, 255, .88) !important;
    }

    /* CTA before footer */
    .prefooter-cta {
      min-height: 100svh;
      background: #111;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .prefooter-cta h2 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: .95;
      margin-bottom: 20px;
    }

    .prefooter-cta a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      border-bottom: 1px solid #fff;
      padding-bottom: 4px;
    }



    /* OUR WORK */
    .work-grid {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 24px !important
    }

    .work-col {
      display: contents !important
    }

    .work-col:nth-child(2) {
      padding-top: 0 !important
    }

    .wi {
      position: relative;
      border-radius: 18px;
      overflow: hidden
    }

    .wi-img {
      margin-bottom: 0 !important;
      aspect-ratio: 4/5 !important
    }

    .wi-meta,
    .wi-title {
      position: absolute;
      z-index: 3;
      color: #fff
    }

    .wi-meta {
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: space-between
    }

    .wi-title {
      left: 18px;
      bottom: 18px;
      right: 18px;
      font-size: 20px !important
    }

    .wi::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15))
    }

    .wi-brand,
    .wi-type {
      color: #fff !important
    }

    /* TESTIMONIALS */
    .testi-sec {
      overflow: hidden !important
    }

    .testi-hdr,
    .testi-track-wrap {
      max-width: 1200px;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 56px !important;
      padding-right: 56px !important
    }

    .testi-hdr {
      margin-bottom: 44px !important
    }

    .testi-track-wrap {
      overflow: hidden
    }

    .testi-track-wrap::before {
      display: none !important
    }

    .testi-track-wrap::after {
      right: 56px !important;
      width: 90px !important;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%) !important
    }

    .testi-track {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 24px !important;
      padding: 0 !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .tc {
      flex: 0 0 calc((100% - 48px)/3) !important;
      min-width: calc((100% - 48px)/3) !important;
      border-top: 0 !important;
      padding-top: 0 !important;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .tc-q {
      margin-bottom: 8px !important
    }

    .testi-sec .rev,
    .cases-sec .rev {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important
    }

    /* Case studies */
    .cases-sec {
      overflow: hidden !important
    }

    .c-track {
      gap: 26px !important;
      padding: 0 0 12px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .c-track::after {
      content: '';
      flex: 0 0 1px
    }

    .cc {
      flex: 0 0 calc((100% - 52px)/3) !important;
      min-width: calc((100% - 52px)/3) !important;
      scroll-snap-align: start;
      transform: none !important;
      box-shadow: none !important
    }

    .cc:hover {
      transform: none !important;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .05) !important
    }

    .cc-img {
      height: 228px !important
    }

    .cc-img img {
      transform: none !important
    }

    .cc:hover .cc-img img {
      transform: none !important
    }

    .cases-sec .wrap {
      position: relative
    }

    .cases-sec .wrap::after {
      content: '';
      position: absolute;
      right: 56px;
      top: 132px;
      bottom: 0;
      width: 86px;
      pointer-events: none;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%)
    }

    /* CTA */
    .prefooter-cta {
      min-height: 100svh !important;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-bottom: 0 !important;
      transform: none !important;
      transition: none !important;
    }

    .prefooter-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .58)), url('https://images.unsplash.com/photo-1516726817505-f5ed825624d8?w=1800&q=80') center/cover;
      z-index: -1
    }

    .prefooter-cta h2 {
      font-size: clamp(42px, 5.8vw, 78px) !important;
      max-width: 760px;
      text-align: center;
      line-height: .98
    }

    .prefooter-cta p {
      display: none !important
    }

    .prefooter-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      padding: 13px 24px;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s
    }

    .prefooter-cta a:hover {
      background: #fff;
      color: #111;
      border-color: #fff
    }

    body {
      padding-bottom: var(--footer-h, 0px);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: #f7ffea;
      z-index: -2;
      pointer-events: none
    }

    section,
    .mq,
    .hero,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec,
    .prefooter-cta {
      position: relative;
      z-index: 1
    }

    .mq,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec {
      background: #f7ffea
    }

    .hero,
    .prefooter-cta {
      background: #111
    }

    .prefooter-cta {
      z-index: 2
    }

    hr.rule {
      display: none !important
    }

    .mq,
    .stats-sec {
      border-top: 0 !important;
      border-bottom: 0 !important
    }

    .svc-list,
    .svc-row,
    .cc,
    .cc-m,
    .ft-bot {
      border-color: rgba(0, 0, 0, .045) !important
    }


    footer {
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      padding: clamp(42px, 6vw, 72px) 0 30px !important;
    }

    @media(max-width:1200px) {
      .work-grid {
        grid-template-columns: repeat(3, 1fr) !important
      }
    }

    @media(max-width:960px) {
      .work-grid {
        grid-template-columns: 1fr !important
      }

      .tc {
        flex: 0 0 100% !important;
        min-width: 100% !important
      }

      .cc {
        flex: 0 0 86% !important;
        min-width: 86% !important
      }

      .testi-hdr,
      .testi-track-wrap {
        padding-left: 24px !important;
        padding-right: 24px !important
      }

      .testi-track-wrap::after {
        right: 24px !important
      }

      .cases-sec .wrap::after {
        right: 24px
      }
    }

    /* Mobile hero and draggable tracks */
    .c-track,
    .testi-track,
    .reel-outer {
      touch-action: pan-y;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }

    .c-track.dragging,
    .testi-track.dragging,
    .reel-outer.dragging {
      cursor: grabbing;
      scroll-snap-type: none !important
    }

    .c-track.dragging *,
    .testi-track.dragging *,
    .reel-outer.dragging * {
      pointer-events: none
    }

    .reel-outer {
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scrollbar-width: none
    }

    .reel-outer::-webkit-scrollbar,
    .c-track::-webkit-scrollbar,
    .testi-track::-webkit-scrollbar {
      display: none
    }

    .reel-outer.dragging .reel-strip,
    .reel-outer:active .reel-strip {
      animation-play-state: paused
    }

    @media(max-width:960px) {
      body[data-page="influencer"] .hero {
        min-height: auto !important;
        display: block !important;
        padding: 92px 0 44px !important;
        background: #111 !important
      }

      body[data-page="influencer"] .hero-media {
        position: relative !important;
        inset: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        overflow: visible !important
      }

      body[data-page="influencer"] .service-hero-bg {
        position: absolute !important;
        inset: -92px 0 -220px 0 !important;
        height: auto !important
      }

      body[data-page="influencer"] .hero-mock {
        display: block !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: min(78vw, 360px) !important;
        margin: 0 auto 34px !important;
        z-index: 3 !important
      }

      body[data-page="influencer"] .hero-card {
        padding: 10px !important
      }

      body[data-page="influencer"] .hero-mock-cap {
        font-size: 14px;
        left: 12%;
        right: 8%
      }

      body[data-page="influencer"] .hero-body {
        position: relative !important;
        z-index: 4 !important;
        padding: 0 24px !important
      }
    }



    /* ── RESET ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      background: #f7ffea;
      color: #1A1A1A;
      font-family: 'Switzer', -apple-system, 'Helvetica Neue', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ── SWITZER font ── */
    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-300-normal.woff2') format('woff2');
      font-weight: 300;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-400-normal.woff2') format('woff2');
      font-weight: 400;
      font-display: swap;
    }

    @font-face {
      font-family: 'Switzer';
      src: url('https://fonts.bunny.net/switzer/files/switzer-latin-500-normal.woff2') format('woff2');
      font-weight: 500;
      font-display: swap;
    }

    /* ── CURSOR ── */
    .cur,
    .cur-r {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
    }

    .cur {
      width: 7px;
      height: 7px;
      background: #7B6CF6;
      transition: transform .15s ease;
    }

    .cur-r {
      width: 26px;
      height: 26px;
      border: 1px solid rgba(123, 108, 246, .4);
      z-index: 9998;
      transition: transform .45s cubic-bezier(.16, 1, .3, 1);
    }

    @media(pointer:coarse) {

      .cur,
      .cur-r {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    @media(pointer:fine) {
      body {
        cursor: none;
      }
    }

    /* ── PROGRESS ── */
    .prog {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      z-index: 600;
    }

    .prog-f {
      height: 100%;
      background: #7B6CF6;
      width: 0;
      transition: width .1s linear;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 400;
      padding: 26px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }

    nav.sc {
      padding: 14px 56px;
      background: rgba(247, 255, 234, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: rgba(0, 0, 0, .07);
    }

    .nav-logo img {
      height: 28px;
      width: auto;
      transition: filter .3s;
    }

    nav.hero-nav:not(.sc) .nav-logo img {
      filter: brightness(0) invert(1);
    }

    .nav-r {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, .7);
      letter-spacing: .01em;
      transition: color .2s;
    }

    nav.sc .nav-links a {
      color: #888;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
    }

    nav.sc .nav-links a:hover,
    nav.sc .nav-links a.active {
      color: #1A1A1A;
    }

    .nav-cta {
      font-size: 13px;
      font-weight: 400;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
      padding: 8px 20px;
      border-radius: 100px;
      transition: all .2s;
      white-space: nowrap;
    }

    nav.sc .nav-cta {
      color: #1A1A1A;
      border-color: rgba(0, 0, 0, .18);
    }

    .nav-cta:hover {
      background: #fff;
      color: #1A1A1A;
      border-color: #fff;
    }

    nav.sc .nav-cta:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    .ham {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: all .2s;
      flex-shrink: 0;
    }

    nav.sc .ham {
      border-color: rgba(0, 0, 0, .14);
    }

    .ham span {
      display: block;
      height: 1px;
      background: #fff;
      transition: width .2s;
    }

    .ham span:nth-child(1) {
      width: 14px;
    }

    .ham span:nth-child(2) {
      width: 10px;
    }

    nav.sc .ham span {
      background: #1A1A1A;
    }

    body.mob-open #nav {
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    body.mob-open {
      overflow: hidden;
    }

    /* ── MOBILE NAV ── */
    .mob-nav {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 500;
      display: flex;
      flex-direction: column;
      clip-path: circle(0% at calc(100% - 44px) 42px);
      transition: clip-path .55s cubic-bezier(.16, 1, .3, 1);
      pointer-events: none;
    }

    .mob-nav.open {
      clip-path: circle(150% at calc(100% - 44px) 42px);
      pointer-events: all;
    }

    .mob-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      flex-shrink: 0;
    }

    .mob-top img {
      height: 26px;
    }

    .mob-x {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }

    .mob-x:hover {
      background: rgba(0, 0, 0, .05);
    }

    .mob-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 28px;
    }

    .mob-links a {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 9vw, 50px);
      color: #1A1A1A;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .07);
      display: block;
      text-align: right;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s, transform .4s, color .2s;
    }

    .mob-links a:hover {
      color: #7B6CF6;
    }

    .mob-nav.open .mob-links a {
      opacity: 1;
      transform: translateY(0);
    }

    .mob-nav.open .mob-links a:nth-child(1) {
      transition-delay: .12s;
    }

    .mob-nav.open .mob-links a:nth-child(2) {
      transition-delay: .19s;
    }

    .mob-nav.open .mob-links a:nth-child(3) {
      transition-delay: .26s;
    }

    .mob-nav.open .mob-links a:nth-child(4) {
      transition-delay: .33s;
    }

    .mob-foot {
      padding: 20px 28px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      opacity: 0;
      transition: opacity .3s ease .38s;
    }

    .mob-nav.open .mob-foot {
      opacity: 1;
    }

    .mob-contact {
      font-size: 12px;
      color: #888;
      line-height: 1.6;
    }

    .mob-cta {
      font-size: 13px;
      padding: 9px 18px;
      border-radius: 100px;
      background: #1A1A1A;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: background .2s;
    }

    .mob-cta:hover {
      background: #7B6CF6;
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .sec {
      padding: 100px 0;
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #ABABAB;
      display: block;
      margin-bottom: 14px;
    }

    .sec-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(34px, 3.8vw, 52px);
      line-height: 1.06;
      letter-spacing: -.022em;
      color: #1A1A1A;
    }

    .sec-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    hr.rule {
      display: none !important;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-dark:hover {
      opacity: .75;
    }

    .btn-link {
      font-size: 13px;
      color: #888;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-link svg {
      transition: transform .2s;
    }

    .btn-link:hover {
      color: #1A1A1A;
    }

    .btn-link:hover svg {
      transform: translateX(4px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media img,
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .15) 100%);
    }

    .hero-body {
      position: relative;
      z-index: 2;
      padding: 0 56px 60px;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 18px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .3s forwards;
    }

    .hero-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(52px, 6.5vw, 92px);
      line-height: .97;
      letter-spacing: -.03em;
      color: #fff;
      max-width: 900px;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .5s forwards;
    }

    .hero-h em {
      font-style: italic;
      color: rgba(255, 255, 255, .6);
    }

    .hero-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-top: 36px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .7s forwards;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .55);
      max-width: 360px;
      line-height: 1.75;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-shrink: 0;
    }

    .btn-w {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #7B6CF6;
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 400;
      transition: opacity .2s;
      white-space: nowrap;
    }

    .btn-w:hover {
      opacity: .85;
    }

    .btn-gw {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .btn-gw svg {
      transition: transform .2s;
    }

    .btn-gw:hover {
      color: #fff;
    }

    .btn-gw:hover svg {
      transform: translateX(4px);
    }

    /* ── MARQUEE ── */
    .mq {
      overflow: hidden;
      position: relative;
      border-top: none;
      border-bottom: none;
      padding: 20px 0;
    }

    .mq::before,
    .mq::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .mq::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .mq::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .mq-t {
      display: flex;
      gap: 48px;
      align-items: center;
      animation: tick 32s linear infinite;
      width: max-content;
    }

    .mq:hover .mq-t {
      animation-play-state: paused;
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .mq-b {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #C0C0B8;
      white-space: nowrap;
    }

    .mq-d {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .12);
      flex-shrink: 0;
    }

    /* ── REEL STRIP ── */
    .reel-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .reel-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 44px;
      padding: 0 56px;
      flex-wrap: wrap;
    }

    .reel-outer {
      position: relative;
      overflow: hidden;
    }

    .reel-outer::before,
    .reel-outer::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .reel-outer::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .reel-outer::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .reel-strip {
      display: flex;
      gap: 10px;
      animation: rscroll 38s linear infinite;
      width: max-content;
      padding: 0 56px;
    }

    .reel-sec:hover .reel-strip {
      animation-play-state: paused;
    }

    @keyframes rscroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .rc {
      width: 140px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .rc-inner {
      aspect-ratio: 9/16;
      position: relative;
      overflow: hidden;
    }

    .rc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .5s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-bg {
      transform: scale(1.06);
    }

    .rc-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(.8);
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all .3s cubic-bezier(.16, 1, .3, 1);
    }

    .rc:hover .rc-play {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .rc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
    }

    .rc:hover .rc-overlay {
      opacity: 1;
    }

    .rc-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 10px 9px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
    }

    /* reel bg colors */
    .rg1 {
      background: linear-gradient(150deg, #e0d5f5, #b8a8f0);
    }

    .rg2 {
      background: linear-gradient(150deg, #d5e8f0, #a8c8e8);
    }

    .rg3 {
      background: linear-gradient(150deg, #f0e5d5, #e8c8a0);
    }

    .rg4 {
      background: linear-gradient(150deg, #d5f0e0, #a0dbb8);
    }

    .rg5 {
      background: linear-gradient(150deg, #f0d5e8, #e8a0c8);
    }

    .rg6 {
      background: linear-gradient(150deg, #e8e0f0, #c8b8e8);
    }

    .rg7 {
      background: linear-gradient(150deg, #f0ead5, #d4bc80);
    }

    .rg8 {
      background: linear-gradient(150deg, #d5eaf0, #80bcd4);
    }

    /* ── LIGHTBOX ── */
    #lb {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: rgba(247, 255, 234, .65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    #lb.on {
      opacity: 1;
      pointer-events: all;
    }

    .lb-box {
      position: relative;
      width: min(420px, 90vw);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transform: scale(.94);
      transition: transform .35s cubic-bezier(.16, 1, .3, 1);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    }

    #lb.on .lb-box {
      transform: scale(1);
    }

    .lb-video {
      width: 100%;
      aspect-ratio: 9/16;
      background: #f7ffea;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
    }

    .lb-play-btn {
      width: 56px;
      height: 56px;
      background: #7B6CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-hint {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-info {
      padding: 18px 24px;
    }

    .lb-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      margin-bottom: 3px;
    }

    .lb-brand {
      font-size: 12px;
      color: #ABABAB;
    }

    .lb-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, .06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: background .2s;
    }

    .lb-close:hover {
      background: rgba(0, 0, 0, .12);
    }

    /* ── STATS ── */
    .stats-sec {
      padding: 72px 0;
      border-top: none;
      border-bottom: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(0, 0, 0, .08);
    }

    .stat:last-child {
      border: none;
    }

    .stat-n {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(42px, 5vw, 58px);
      color: #1A1A1A;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .stat-n em {
      font-style: normal;
      color: #7B6CF6;
    }

    .stat-l {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    /* ── SERVICES ── */
    .svc-sec {
      padding: 100px 0;
    }

    .svc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 56px;
      align-items: start;
    }

    .svc-img-col {
      position: sticky;
      top: 120px;
    }

    .svc-img-frame {
      aspect-ratio: 4/3;
      border-radius: 8px;
      overflow: hidden;
      background: #E8ECE6;
    }

    .svc-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity .35s ease;
    }

    .svc-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .svc-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 26px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      cursor: default;
      transition: all .2s;
    }

    .svc-row-num {
      font-size: 11px;
      color: #CCC;
      width: 26px;
      flex-shrink: 0;
    }

    .svc-row-body {
      flex: 1;
    }

    .svc-row-name {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(24px, 2.6vw, 32px);
      color: #1A1A1A;
      line-height: 1.1;
      letter-spacing: -.015em;
      transition: color .25s;
    }

    .svc-row-tags {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 4px;
    }

    .svc-row-tags span {
      margin-right: 8px;
    }

    .svc-row-tags span::after {
      content: '·';
      margin-left: 8px;
      color: #DDD;
    }

    .svc-row-tags span:last-child::after {
      content: '';
    }

    .svc-row-arr {
      opacity: 0;
      transform: translateX(-6px);
      transition: all .25s;
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .svc-row:hover .svc-row-name,
    .svc-row.on .svc-row-name {
      color: #7B6CF6;
    }

    .svc-row:hover .svc-row-arr,
    .svc-row.on .svc-row-arr {
      opacity: 1;
      transform: translateX(0);
    }

    /* ── WORK — editorial 2col offset ── */
    .work-sec {
      padding: 100px 0;
    }

    .work-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .work-col {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .work-col:nth-child(2) {
      padding-top: 80px;
    }

    .wi {
      cursor: pointer;
    }

    .wi-img {
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      margin-bottom: 14px;
    }

    .wi-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .wi:hover .wi-img img {
      transform: scale(1.04);
    }

    .wi:nth-child(1) .wi-img {
      aspect-ratio: 4/3;
    }

    .wi:nth-child(2) .wi-img {
      aspect-ratio: 3/4;
    }

    .wi-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .wi-brand {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-type {
      font-size: 11px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .wi-title {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 18px;
      color: #1A1A1A;
      line-height: 1.3;
      letter-spacing: -.01em;
    }

    /* ── CASE STUDIES ── */
    .cases-sec {
      padding: 100px 0;
    }

    .cases-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .c-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .c-track::-webkit-scrollbar {
      display: none;
    }

    .cc {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .07);
      transition: all .3s ease;
    }

    .cc:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    }

    .cc-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .cc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .cc:hover .cc-img img {
      transform: scale(1.04);
    }

    .cc-badge {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .cc-body {
      padding: 20px 22px 24px;
    }

    .cc-svc {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #7B6CF6;
      margin-bottom: 8px;
    }

    .cc-t {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 16px;
      color: #1A1A1A;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .cc-m {
      display: flex;
      gap: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(0, 0, 0, .07);
    }

    .cc-mv {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 22px;
      color: #1A1A1A;
    }

    .cc-mv em {
      font-style: normal;
      color: #7B6CF6;
    }

    .cc-mk {
      font-size: 10px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #ABABAB;
      margin-top: 1px;
    }

    .s-btns {
      display: flex;
      gap: 8px;
    }

    .s-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s;
      color: #888;
    }

    .s-btn:hover {
      background: #1A1A1A;
      color: #f7ffea;
      border-color: #1A1A1A;
    }

    /* ── TESTIMONIALS horizontal slider ── */
    .testi-sec {
      padding: 100px 0;
      overflow: hidden;
    }

    .testi-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
      padding: 0 56px;
    }

    .testi-track-wrap {
      position: relative;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 56px;
      z-index: 2;
      pointer-events: none;
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f7ffea, transparent);
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f7ffea, transparent);
    }

    .testi-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      scroll-behavior: smooth;
      padding: 0 56px;
    }

    .testi-track::-webkit-scrollbar {
      display: none;
    }

    .tc {
      flex: 0 0 380px;
      scroll-snap-align: start;
      border-top: 1px solid rgba(0, 0, 0, .1);
      padding-top: 22px;
    }

    .tc-q {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-style: italic;
      font-size: 32px;
      color: #7B6CF6;
      line-height: 1;
      margin-bottom: 12px;
      opacity: .35;
    }

    .tc-txt {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tc-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #7B6CF6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }

    .tc-name {
      font-size: 13px;
      font-weight: 500;
      color: #1A1A1A;
    }

    .tc-role {
      font-size: 11px;
      color: #ABABAB;
      margin-top: 1px;
    }

    /* ── CONTACT ── */
    .contact-sec {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .c-h {
      font-family: 'Switzer', sans-serif;
      font-style: normal;
      font-size: clamp(32px, 4vw, 50px);
      color: #1A1A1A;
      line-height: 1.04;
      letter-spacing: -.025em;
      margin: 14px 0 14px;
    }

    .c-h em {
      font-style: italic;
      color: #7B6CF6;
    }

    .c-sub {
      font-size: 14px;
      color: #777;
      line-height: 1.75;
    }

    .c-details {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cd {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: #888;
    }

    .cd svg {
      color: #7B6CF6;
      flex-shrink: 0;
    }

    .cform {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fl {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ABABAB;
    }

    .fi,
    .fsel,
    .fta {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: 6px;
      padding: 11px 14px;
      color: #1A1A1A;
      font-family: 'Switzer', sans-serif;
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }

    .fi:focus,
    .fsel:focus,
    .fta:focus {
      border-color: #7B6CF6;
      box-shadow: 0 0 0 3px rgba(123, 108, 246, .1);
    }

    .fi::placeholder,
    .fta::placeholder {
      color: #CCC;
    }

    .fta {
      resize: none;
      height: 88px;
      line-height: 1.6;
    }

    .fsel {
      background: #fff;
    }

    .fsub {
      background: #1A1A1A;
      color: #f7ffea;
      border: none;
      padding: 12px 26px;
      border-radius: 100px;
      font-family: 'Switzer', sans-serif;
      font-size: 13px;
      font-weight: 400;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      align-self: flex-start;
      transition: opacity .2s;
    }

    .fsub:hover {
      opacity: .75;
    }

    /* ── FOOTER ── */
    footer {
      background: #1A1A1A;
      padding: 60px 0 30px;
    }

    .ft-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .ft-logo {
      height: 24px;
      width: auto;
      filter: brightness(10) saturate(0);
      opacity: .6;
      margin-bottom: 14px;
      display: block;
    }

    .ft-tl {
      font-size: 13px;
      color: rgba(255, 255, 255, .28);
      line-height: 1.7;
      max-width: 240px;
    }

    .ft-socs {
      display: flex;
      gap: 9px;
      margin-top: 20px;
    }

    .fsoc {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .28);
      transition: all .2s;
    }

    .fsoc:hover {
      border-color: #7B6CF6;
      color: #A89AF9;
    }

    .fc-t {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      margin-bottom: 14px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .flinks a {
      font-size: 13px;
      color: rgba(255, 255, 255, .38);
      transition: color .2s;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, .75);
    }

    .ft-bot {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
    }

    .ft-legal {
      display: flex;
      gap: 18px;
    }

    .ft-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, .2);
      transition: color .2s;
    }

    .ft-legal a:hover {
      color: rgba(255, 255, 255, .38);
    }

    /* ── FLOAT CTA ── */
    .fcta {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 100;
      background: #1A1A1A;
      color: #f7ffea;
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
      transform: translateY(60px);
      opacity: 0;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
    }

    .fcta.on {
      transform: translateY(0);
      opacity: 1;
    }

    .fcta:hover {
      background: #7B6CF6;
      box-shadow: 0 8px 24px rgba(123, 108, 246, .3);
    }

    /* ── REVEAL ── */
    .rev {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
    }

    .rev.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .1s;
    }

    .d2 {
      transition-delay: .2s;
    }

    .d3 {
      transition-delay: .3s;
    }

    .d4 {
      transition-delay: .4s;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── MOBILE ── */
    @media(max-width:960px) {

      nav,
      nav.sc {
        padding: 18px 24px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .wrap {
        padding: 0 24px;
      }

      .hero-body {
        padding: 0 24px 52px;
      }

      .reel-hdr {
        padding: 0 24px;
      }

      .reel-strip {
        padding: 0 24px;
      }

      .testi-hdr {
        padding: 0 24px;
      }

      .testi-track {
        padding: 0 24px;
      }

      .testi-track-wrap::before,
      .testi-track-wrap::after {
        display: none;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .08);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      .svc-layout {
        grid-template-columns: 1fr;
      }

      .svc-img-col {
        display: none;
      }

      .work-grid {
        grid-template-columns: 1fr;
      }

      .work-col:nth-child(2) {
        padding-top: 0;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .frow {
        grid-template-columns: 1fr;
      }

      .cc {
        flex: 0 0 300px;
      }

      .tc {
        flex: 0 0 300px;
      }
    }

    @media(max-width:600px) {
      .ft-top {
        grid-template-columns: 1fr;
      }

      .sec-h {
        font-size: clamp(28px, 8vw, 36px);
      }

      .hero-h {
        font-size: clamp(40px, 9vw, 64px);
      }
    }

    /* FORCE SWITZER EVERYWHERE */
    html,
    body,
    *,
    *::before,
    *::after {
      font-family: 'Switzer', sans-serif !important;
    }


    /* SERVICE PAGE ADDITIONS - reuse home visual system */
    .service-hero-bg,
    .service-art,
    .svc-art,
    .case-art,
    .testi-art {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .service-hero-bg {
      background: linear-gradient(135deg, #121212 0%, #27242F 42%, #7B6CF6 100%);
    }

    .service-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 72% 38%, rgba(247, 255, 234, .22), transparent 27%), linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 38%);
    }

    .hero-mock {
      position: absolute;
      right: 8vw;
      bottom: 12vh;
      width: min(360px, 32vw);
      aspect-ratio: 4/5;
      background: #fff;
      border: 1px solid rgba(123, 108, 246, .55);
      border-radius: 8px;
      padding: 14px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
      z-index: 1;
    }

    .hero-mock::before,
    .hero-mock::after {
      content: '';
      position: absolute;
      inset: 18px -20px -20px 20px;
      border: 2px solid #F2D260;
      border-radius: 8px;
      z-index: -1;
    }

    .hero-mock::after {
      inset: 34px -36px -36px 36px;
      border-color: #EA695E;
    }

    .hero-mock-media {
      height: 76%;
      border-radius: 5px;
      background: linear-gradient(145deg, #35273C, #7B6CF6 48%, #F0C85E);
      position: relative;
      overflow: hidden;
    }

    .hero-mock-media::before {
      content: '';
      position: absolute;
      left: 25%;
      right: 25%;
      top: 18%;
      bottom: 0;
      border-radius: 46% 46% 0 0;
      background: linear-gradient(160deg, #E5B08F, #5E443D);
    }

    .hero-mock-cap {
      position: absolute;
      left: 18%;
      right: 12%;
      bottom: 18%;
      background: rgba(0, 0, 0, .82);
      color: #fff;
      text-align: center;
      font-size: 18px;
      padding: 2px 8px;
    }

    .hero-mock-name {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.1;
      margin-top: 13px;
      color: #1A1A1A
    }

    .hero-mock-role {
      font-size: 12px;
      color: #777;
    }

    .service-art {
      background: linear-gradient(145deg, #DCE8EA, #A4BCCC);
    }

    .service-art.alt {
      background: linear-gradient(145deg, #E9D9F0, #B7A7DF);
    }

    .service-art.warm {
      background: linear-gradient(145deg, #F0E0CC, #D2A779);
    }

    .service-art.green {
      background: linear-gradient(145deg, #DDEDE2, #92BE9C);
    }

    .service-art::after,
    .svc-art::after,
    .case-art::after,
    .testi-art::after {
      content: '';
      position: absolute;
      left: 28%;
      right: 28%;
      top: 20%;
      bottom: 0;
      border-radius: 42% 42% 0 0;
      background: rgba(255, 255, 255, .48);
    }

    .svc-art {
      background: linear-gradient(145deg, #E8ECE6, #C6CEC1);
    }

    .case-art {
      background: linear-gradient(135deg, #2A2430, #7B6CF6);
    }

    .testi-art {
      background: linear-gradient(145deg, #F0E5D5, #C8B8E8);
    }

    .detail-sec {
      padding: 100px 0 120px;
      background: #f7ffea !important;
      position: relative !important;
      z-index: 2 !important;
      overflow: hidden;
      isolation: isolate;
    }

    .detail-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #f7ffea;
      z-index: -1;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 52px;
    }

    .detail-card {
      border-top: 1px solid rgba(0, 0, 0, .08);
      padding-top: 24px;
    }

    .detail-card h3 {
      font-size: 24px;
      line-height: 1.15;
      font-weight: 400;
      color: #1A1A1A;
      margin-bottom: 12px;
      letter-spacing: -.01em;
    }

    .detail-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .process-list {
      border-top: 1px solid rgba(0, 0, 0, .08);
      margin-top: 56px;
    }

    .process-item {
      display: grid;
      grid-template-columns: 80px 1fr 1.2fr;
      gap: 28px;
      padding: 25px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .08);
      align-items: start;
    }

    .process-item span {
      font-size: 11px;
      color: #CCC;
    }

    .process-item h3 {
      font-size: 26px;
      line-height: 1.12;
      font-weight: 400;
    }

    .process-item p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }

    .growth-panel {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .07);
      border-radius: 8px;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: center;
    }

    .growth-faces {
      display: flex;
      margin-top: 26px;
    }

    .growth-face {
      width: 86px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: linear-gradient(145deg, #E4B08D, #7B6CF6);
      border: 4px solid #fff;
      margin-left: -13px;
    }

    .growth-face:first-child {
      margin-left: 0;
      width: 110px;
    }

    .growth-metric {
      padding: 20px 0;
      border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .growth-metric strong {
      font-size: 48px;
      line-height: 1;
      color: #7B6CF6;
      font-weight: 400;
      display: block;
    }

    .growth-metric span {
      font-size: 12px;
      font-weight: 500;
    }

    .cc-img .case-art {
      height: 100%;
    }

    .svc-img-frame .svc-art {
      height: 100%;
    }

    .wi-img .service-art {
      height: 100%;
    }

    .tc .testi-art {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media(max-width:960px) {
      .hero-mock {
        display: none
      }

      .detail-grid,
      .growth-panel {
        grid-template-columns: 1fr
      }

      .process-item {
        grid-template-columns: 1fr;
        gap: 8px
      }

      .detail-sec {
        padding: 72px 0 96px
      }
    }




    /* FINAL DESIGN OVERRIDES */

    /* Typography */
    .hero-h {
      font-size: clamp(44px, 5vw, 72px) !important;
      max-width: 820px !important;
      line-height: .95 !important;
      font-weight: 600 !important;
    }

    .sec-h,
    .c-h,
    .wi-title,
    .svc-row-name,
    .stat-n {
      font-weight: 600 !important;
    }

    .sec {
      padding: 140px 0 !important;
    }



    /* Work section minimal */
    .work-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 24px !important;
    }

    .wi-img {
      border-radius: 16px !important;
      overflow: hidden !important;
    }

    .wi-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    .work-col:nth-child(2) {
      padding-top: 40px !important;
    }

    /* Services */
    .svc-layout {
      gap: 50px !important;
    }

    .svc-row {
      padding: 32px 0 !important;
    }

    /* Footer visibility */
    .ft-copy,
    .ft-legal a,
    .ft-tl,
    .flinks a,
    .fc-t {
      color: rgba(255, 255, 255, .88) !important;
    }

    /* CTA before footer */
    .prefooter-cta {
      min-height: 100svh;
      background: #111;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .prefooter-cta h2 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: .95;
      margin-bottom: 20px;
    }

    .prefooter-cta a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      border-bottom: 1px solid #fff;
      padding-bottom: 4px;
    }



    /* OUR WORK */
    .work-grid {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 24px !important
    }

    .work-col {
      display: contents !important
    }

    .work-col:nth-child(2) {
      padding-top: 0 !important
    }

    .wi {
      position: relative;
      border-radius: 18px;
      overflow: hidden
    }

    .wi-img {
      margin-bottom: 0 !important;
      aspect-ratio: 4/5 !important
    }

    .wi-meta,
    .wi-title {
      position: absolute;
      z-index: 3;
      color: #fff
    }

    .wi-meta {
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: space-between
    }

    .wi-title {
      left: 18px;
      bottom: 18px;
      right: 18px;
      font-size: 20px !important
    }

    .wi::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15))
    }

    .wi-brand,
    .wi-type {
      color: #fff !important
    }

    /* TESTIMONIALS */
    .testi-sec {
      overflow: hidden !important
    }

    .testi-hdr,
    .testi-track-wrap {
      max-width: 1200px;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 56px !important;
      padding-right: 56px !important
    }

    .testi-hdr {
      margin-bottom: 44px !important
    }

    .testi-track-wrap {
      overflow: hidden
    }

    .testi-track-wrap::before {
      display: none !important
    }

    .testi-track-wrap::after {
      right: 56px !important;
      width: 90px !important;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%) !important
    }

    .testi-track {
      display: flex !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      gap: 24px !important;
      padding: 0 !important;
      scroll-snap-type: none !important;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .tc {
      flex: 0 0 calc((100% - 48px)/3) !important;
      min-width: calc((100% - 48px)/3) !important;
      border-top: 0 !important;
      padding-top: 0 !important;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .tc-q {
      margin-bottom: 8px !important
    }

    .testi-sec .rev,
    .cases-sec .rev {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important
    }

    /* Case studies */
    .cases-sec {
      overflow: hidden !important
    }

    .c-track {
      gap: 26px !important;
      padding: 0 0 12px !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior: contain;
      align-items: stretch
    }

    .c-track::after {
      content: '';
      flex: 0 0 1px
    }

    .cc {
      flex: 0 0 calc((100% - 52px)/3) !important;
      min-width: calc((100% - 52px)/3) !important;
      scroll-snap-align: start;
      transform: none !important;
      box-shadow: none !important
    }

    .cc:hover {
      transform: none !important;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .05) !important
    }

    .cc-img {
      height: 228px !important
    }

    .cc-img img {
      transform: none !important
    }

    .cc:hover .cc-img img {
      transform: none !important
    }

    .cases-sec .wrap {
      position: relative
    }

    .cases-sec .wrap::after {
      content: '';
      position: absolute;
      right: 56px;
      top: 132px;
      bottom: 0;
      width: 86px;
      pointer-events: none;
      background: linear-gradient(to left, #f7ffea 0%, rgba(247, 255, 234, 0) 100%)
    }

    /* CTA */
    .prefooter-cta {
      min-height: 100svh !important;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-bottom: 0 !important;
      transform: none !important;
      transition: none !important;
    }

    .prefooter-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .58)), url('https://images.unsplash.com/photo-1516726817505-f5ed825624d8?w=1800&q=80') center/cover;
      z-index: -1
    }

    .prefooter-cta h2 {
      font-size: clamp(42px, 5.8vw, 78px) !important;
      max-width: 760px;
      text-align: center;
      line-height: .98
    }

    .prefooter-cta p {
      display: none !important
    }

    .prefooter-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      padding: 13px 24px;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s
    }

    .prefooter-cta a:hover {
      background: #fff;
      color: #111;
      border-color: #fff
    }

    body {
      padding-bottom: var(--footer-h, 0px);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: #f7ffea;
      z-index: -2;
      pointer-events: none
    }

    section,
    .mq,
    .hero,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec,
    .prefooter-cta {
      position: relative;
      z-index: 1
    }

    .mq,
    .reel-sec,
    .stats-sec,
    .svc-sec,
    .work-sec,
    .cases-sec,
    .testi-sec,
    .contact-sec,
    .detail-sec {
      background: #f7ffea
    }

    .hero,
    .prefooter-cta {
      background: #111
    }

    .prefooter-cta {
      z-index: 2
    }

    hr.rule {
      display: none !important
    }

    .mq,
    .stats-sec {
      border-top: 0 !important;
      border-bottom: 0 !important
    }

    .svc-list,
    .svc-row,
    .cc,
    .cc-m,
    .ft-bot {
      border-color: rgba(0, 0, 0, .045) !important
    }


    footer {
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      padding: clamp(42px, 6vw, 72px) 0 30px !important;
    }

    @media(max-width:1200px) {
      .work-grid {
        grid-template-columns: repeat(3, 1fr) !important
      }
    }

    @media(max-width:960px) {
      .work-grid {
        grid-template-columns: 1fr !important
      }

      .tc {
        flex: 0 0 100% !important;
        min-width: 100% !important
      }

      .cc {
        flex: 0 0 86% !important;
        min-width: 86% !important
      }

      .testi-hdr,
      .testi-track-wrap {
        padding-left: 24px !important;
        padding-right: 24px !important
      }

      .testi-track-wrap::after {
        right: 24px !important
      }

      .cases-sec .wrap::after {
        right: 24px
      }
    }

    /* Draggable tracks */
    .c-track,
    .testi-track,
    .reel-outer {
      touch-action: pan-y;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }

    .c-track.dragging,
    .testi-track.dragging,
    .reel-outer.dragging {
      cursor: grabbing;
      scroll-snap-type: none !important
    }

    .c-track.dragging *,
    .testi-track.dragging *,
    .reel-outer.dragging * {
      pointer-events: none
    }

    .reel-outer {
      overflow-x: auto !important;
      overflow-y: hidden !important;
      scrollbar-width: none
    }

    .reel-outer::-webkit-scrollbar,
    .c-track::-webkit-scrollbar,
    .testi-track::-webkit-scrollbar {
      display: none
    }

    .reel-outer.dragging .reel-strip,
    .reel-outer:active .reel-strip {
      animation-play-state: paused
    }


    /* Next.js shell fixes */
    :root {
      --site-bg: #f7ffea;
    }

    html {
      scroll-behavior: smooth;
      background: var(--site-bg);
    }

    body {
      min-height: 100vh;
      padding-bottom: var(--footer-h, 0px) !important;
      background: var(--site-bg) !important;
    }

    a {
      text-decoration-thickness: from-font;
    }

    footer {
      position: fixed !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      z-index: 0 !important;
    }

    .prefooter-cta {
      min-height: 100svh !important;
    }

    .prefooter-cta .pfcta-inner {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 22px;
      text-align: center;
    }

    .prefooter-cta .pfcta-inner p {
      display: none !important;
    }

    .prefooter-cta h2 {
      font-size: clamp(38px, 5vw, 68px) !important;
      max-width: 820px !important;
    }

    .prefooter-cta a.prefooter-link {
      min-width: 132px;
      min-height: 52px;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      border: 1px solid #fff !important;
      border-bottom: 1px solid #fff !important;
      border-radius: 999px !important;
      background: #fff !important;
      color: #111 !important;
      padding: 14px 28px !important;
      font-size: 14px !important;
      line-height: 1 !important;
      font-weight: 500;
      text-decoration: none !important;
    }

    .prefooter-cta a.prefooter-link:hover {
      background: transparent !important;
      color: #fff !important;
      border-color: rgba(255, 255, 255, .44) !important;
    }

    /* Section title rows */
    .reel-hdr,
    .cases-hdr,
    .testi-hdr {
      width: min(1200px, calc(100% - 112px)) !important;
      max-width: 1200px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .reel-hdr {
      align-items: flex-start !important;
    }

    .reel-hdr .sub,
    .reel-hdr p {
      max-width: 420px !important;
    }

    @media (max-width: 767px) {

      .reel-hdr,
      .cases-hdr,
      .testi-hdr {
        width: min(100% - 40px, 1200px) !important;
      }
    }

    /* Brand logo marquee */
    .mq {
      background: var(--site-bg) !important;
    }

    .brand-logo-ticker {
      gap: 34px !important;
      animation: tick 60s linear infinite;
    }

    .mq:hover .brand-logo-ticker {
      animation-play-state: paused !important;
    }

    .brand-logo-pill {
      width: 150px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border: 1px solid rgba(0, 0, 0, .07);
      border-radius: 999px;
      background: rgba(255, 255, 255, .44);
      padding: 10px 28px;
    }

    .brand-logo-pill img {
      max-width: 100%;
      max-height: 28px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      filter: grayscale(1);
      opacity: .72;
    }

    @media (max-width: 767px) {
      .brand-logo-ticker {
        gap: 18px !important;
        animation-duration: 45s;
      }

      .brand-logo-pill {
        width: 120px;
        height: 40px;
        padding: 8px 20px;
      }

      .brand-logo-pill img {
        max-height: 24px;
      }
    }

    /* Case studies and testimonials carousel rewrite */
    .cases-sec .wrap::after,
    .testi-track-wrap::before,
    .testi-track-wrap::after {
      display: none !important;
      content: none !important;
    }

    .c-track,
    .testi-track {
      display: flex !important;
      gap: 32px !important;
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: auto !important;
      overflow-y: visible !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: auto !important;
      scrollbar-width: none !important;
      touch-action: pan-y pinch-zoom !important;
      overscroll-behavior-x: contain !important;
      overscroll-behavior-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .c-track::-webkit-scrollbar,
    .testi-track::-webkit-scrollbar {
      display: none !important;
    }

    .c-track .cc,
    .testi-track .tc {
      flex: 0 0 calc((100% - 64px) / 3) !important;
      max-width: calc((100% - 64px) / 3) !important;
      scroll-snap-align: start !important;
    }

    .c-track .cc {
      min-width: 0 !important;
    }

    .testi-sec,
    .testi-track-wrap {
      overflow: visible !important;
    }

    .testi-track {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    @media (max-width: 767px) {

      .c-track,
      .testi-track {
        gap: 18px !important;
      }

      .c-track .cc,
      .testi-track .tc {
        flex-basis: 100% !important;
        max-width: 100% !important;
      }
    }

    /* Influencer hero creator carousel redesign */
    body[data-page="influencer"] .hero {
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      min-height: 100svh !important;
      padding: 120px 0 84px !important;
      overflow: hidden !important;
    }

    body[data-page="influencer"] .hero-media {
      position: relative !important;
      inset: auto !important;
      height: auto !important;
      min-height: 0 !important;
      width: min(1200px, calc(100% - 112px)) !important;
      margin: 0 auto 48px !important;
      z-index: 2 !important;
    }

    body[data-page="influencer"] .service-hero-bg {
      position: absolute !important;
      inset: -30px -56px !important;
      opacity: .28 !important;
    }

    body[data-page="influencer"] .hero-mock {
      position: relative !important;
      inset: auto !important;
      width: 100% !important;
      aspect-ratio: auto !important;
      margin: 0 !important;
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 18px !important;
      z-index: 4 !important;
    }

    body[data-page="influencer"] .hero-mock::before,
    body[data-page="influencer"] .hero-mock::after {
      display: none !important;
      content: none !important;
    }

    body[data-page="influencer"] .hero-card {
      position: relative !important;
      inset: auto !important;
      min-height: 230px !important;
      padding: 18px !important;
      border-radius: 8px !important;
      border: 1px solid rgba(255, 255, 255, .22) !important;
      background: rgba(255, 255, 255, .08) !important;
      box-shadow: none !important;
      backdrop-filter: blur(18px) !important;
      animation: none !important;
      transform: none !important;
      opacity: 1 !important;
      overflow: hidden !important;
    }

    body[data-page="influencer"] .hero-card::before {
      content: "";
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: rgba(123, 108, 246, .26);
    }

    body[data-page="influencer"] .hero-mock-media {
      height: 118px !important;
      border-radius: 7px !important;
      background: linear-gradient(135deg, rgba(123, 108, 246, .86), rgba(247, 255, 234, .18)) !important;
    }

    body[data-page="influencer"] .hero-mock-media::before {
      left: auto !important;
      right: 24px !important;
      top: 22px !important;
      bottom: 0 !important;
      width: 70px !important;
      border-radius: 999px 999px 0 0 !important;
      background: linear-gradient(160deg, #E8B08F, #6B463B) !important;
    }

    body[data-page="influencer"] .hero-mock-cap {
      left: 14px !important;
      right: auto !important;
      bottom: 16px !important;
      max-width: calc(100% - 34px) !important;
      font-size: 13px !important;
      line-height: 1.15 !important;
      text-align: left !important;
      border-radius: 999px !important;
      padding: 7px 12px !important;
      background: rgba(0, 0, 0, .7) !important;
    }

    body[data-page="influencer"] .hero-mock-name {
      color: #fff !important;
      font-size: 18px !important;
      margin-top: 16px !important;
    }

    body[data-page="influencer"] .hero-mock-role {
      color: rgba(255, 255, 255, .58) !important;
    }

    body[data-page="influencer"] .hero-body {
      position: relative !important;
      z-index: 4 !important;
      padding: 0 !important;
    }

    @media (max-width: 767px) {
      body[data-page="influencer"] .hero {
        padding: 104px 0 72px !important;
      }

      body[data-page="influencer"] .hero-media {
        width: calc(100% - 40px) !important;
        margin-bottom: 34px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        touch-action: pan-y pinch-zoom !important;
      }

      body[data-page="influencer"] .hero-mock {
        display: flex !important;
        gap: 14px !important;
        width: max-content !important;
      }

      body[data-page="influencer"] .hero-card {
        flex: 0 0 calc(100vw - 40px) !important;
        scroll-snap-align: start !important;
      }
    }

    /* Influencer campaign wins redesign */
    body[data-page="influencer"] .growth-sec {
      overflow: hidden !important;
    }

    body[data-page="influencer"] .growth-track {
      gap: 24px !important;
      padding: 0 !important;
    }

    body[data-page="influencer"] .growth-slide {
      flex: 0 0 calc((100% - 48px) / 3) !important;
      max-width: calc((100% - 48px) / 3) !important;
      min-height: 430px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      gap: 28px !important;
      padding: 28px !important;
      border-radius: 8px !important;
      background: #fff !important;
      border: 1px solid rgba(0, 0, 0, .08) !important;
      box-shadow: none !important;
    }

    body[data-page="influencer"] .growth-slide::before {
      content: "";
      display: block;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, #7B6CF6, #111);
      order: -1;
    }

    body[data-page="influencer"] .growth-brand {
      font-size: 28px !important;
      margin-bottom: 24px !important;
      color: #111 !important;
    }

    body[data-page="influencer"] .growth-logo {
      width: 36px !important;
      height: 36px !important;
      border-radius: 8px !important;
    }

    body[data-page="influencer"] .growth-copy {
      max-width: none !important;
      color: #4b4b4b !important;
      font-size: 15px !important;
      line-height: 1.7 !important;
    }

    body[data-page="influencer"] .growth-faces,
    body[data-page="influencer"] .growth-bolt {
      display: none !important;
    }

    body[data-page="influencer"] .growth-metric {
      display: block !important;
      padding: 18px 0 0 !important;
      border-bottom: 0 !important;
      border-top: 1px solid rgba(0, 0, 0, .1) !important;
    }

    body[data-page="influencer"] .growth-metric+.growth-metric {
      margin-top: 16px !important;
    }

    body[data-page="influencer"] .growth-metric strong {
      color: #7B6CF6 !important;
      font-size: 48px !important;
      line-height: 1 !important;
    }

    body[data-page="influencer"] .growth-metric span {
      color: #777 !important;
      display: block !important;
      margin-top: 6px !important;
      font-size: 12px !important;
      letter-spacing: .1em !important;
      text-transform: uppercase !important;
    }

    @media (max-width: 767px) {
      body[data-page="influencer"] .growth-track {
        gap: 18px !important;
      }

      body[data-page="influencer"] .growth-slide {
        flex-basis: 100% !important;
        max-width: 100% !important;
        min-height: 390px !important;
        padding: 24px !important;
      }
    }

    /* Final influencer corrections */
    .cases-sec .cases-hdr {
      width: 100% !important;
      max-width: none !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    body[data-page="influencer"] .hero {
      height: 100vh !important;
      min-height: 600px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-end !important;
      padding: 0 !important;
      overflow: hidden !important;
    }

    body[data-page="influencer"] .hero-media {
      position: absolute !important;
      inset: 0 !important;
      width: auto !important;
      height: auto !important;
      min-height: 0 !important;
      margin: 0 !important;
      z-index: 0 !important;
    }

    body[data-page="influencer"] .service-hero-bg {
      position: absolute !important;
      inset: 0 !important;
      opacity: 1 !important;
    }

    body[data-page="influencer"] .hero-mock {
      position: absolute !important;
      right: 7vw !important;
      bottom: 9vh !important;
      width: min(390px, 33vw) !important;
      aspect-ratio: 4 / 5 !important;
      margin: 0 !important;
      display: block !important;
      z-index: 1 !important;
      overflow: visible !important;
    }

    body[data-page="influencer"] .hero-card {
      position: absolute !important;
      inset: 0 !important;
      min-height: 0 !important;
      padding: 14px !important;
      border-radius: 8px !important;
      background: #fff !important;
      border-width: 2px !important;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .28) !important;
      backdrop-filter: none !important;
      animation: mockCycle 12s infinite cubic-bezier(.16, 1, .3, 1) !important;
      transform: none;
      overflow: visible !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(2) {
      animation-delay: -4s !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(3) {
      animation-delay: -8s !important;
    }

    body[data-page="influencer"] .hero-card::before {
      display: none !important;
      content: none !important;
    }

    body[data-page="influencer"] .hero-mock-media {
      height: 76% !important;
      border-radius: 5px !important;
    }

    body[data-page="influencer"] .hero-mock-media::before {
      left: 25% !important;
      right: 25% !important;
      top: 18% !important;
      bottom: 0 !important;
      width: auto !important;
      border-radius: 46% 46% 0 0 !important;
    }

    body[data-page="influencer"] .hero-mock-cap {
      left: 18% !important;
      right: 12% !important;
      bottom: 18% !important;
      max-width: none !important;
      font-size: 18px !important;
      text-align: center !important;
      border-radius: 0 !important;
      padding: 2px 8px !important;
      background: rgba(0, 0, 0, .82) !important;
    }

    body[data-page="influencer"] .hero-mock-name {
      color: #1A1A1A !important;
      font-size: 18px !important;
      margin-top: 13px !important;
    }

    body[data-page="influencer"] .hero-mock-role {
      color: #777 !important;
    }

    body[data-page="influencer"] .hero-body {
      position: relative !important;
      z-index: 2 !important;
      padding: 0 56px 60px !important;
    }

    body[data-page="influencer"] .growth-slide {
      min-height: 330px !important;
      gap: 22px !important;
      padding: 24px !important;
      align-items: stretch !important;
    }

    body[data-page="influencer"] .growth-slide::before {
      height: 4px !important;
      margin-bottom: 8px !important;
    }

    body[data-page="influencer"] .growth-brand {
      gap: 14px !important;
      margin-bottom: 18px !important;
      font-size: 24px !important;
      line-height: 1.1 !important;
    }

    body[data-page="influencer"] .growth-brand .growth-logo {
      width: 92px !important;
      height: 38px !important;
      border-radius: 0 !important;
      background: transparent !important;
      background-repeat: no-repeat !important;
      background-position: left center !important;
      background-size: contain !important;
      flex: 0 0 92px !important;
    }

    body[data-page="influencer"] .growth-slide .growth-logo {
      background-image: url("brands/groww.png") !important;
    }

    body[data-page="influencer"] .growth-slide.koskii .growth-logo {
      background-image: url("brands/19042020121653376_brlo.png") !important;
    }

    body[data-page="influencer"] .growth-slide.slurrp .growth-logo {
      background-image: url("brands/abstract-logos--600x188.png") !important;
    }

    body[data-page="influencer"] .growth-copy {
      font-size: 14px !important;
      line-height: 1.6 !important;
    }

    body[data-page="influencer"] .growth-slide>div:last-child {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 12px !important;
    }

    body[data-page="influencer"] .growth-metric {
      padding: 14px 0 0 !important;
      border-top: 1px solid rgba(0, 0, 0, .1) !important;
    }

    body[data-page="influencer"] .growth-metric+.growth-metric {
      margin-top: 0 !important;
    }

    body[data-page="influencer"] .growth-metric strong {
      font-size: clamp(30px, 3vw, 38px) !important;
      white-space: nowrap !important;
    }

    body[data-page="influencer"] .growth-metric span {
      font-size: 10px !important;
      letter-spacing: .08em !important;
      white-space: nowrap !important;
    }

    @media (max-width: 767px) {
      body[data-page="influencer"] .hero {
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 96px 0 56px !important;
      }

      body[data-page="influencer"] .hero-media {
        position: relative !important;
        inset: auto !important;
        order: 1 !important;
        width: calc(100% - 40px) !important;
        margin: 0 auto 34px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        z-index: 2 !important;
      }

      body[data-page="influencer"] .service-hero-bg {
        position: absolute !important;
        inset: -96px -20px -260px !important;
      }

      body[data-page="influencer"] .hero-mock {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        display: flex !important;
        width: max-content !important;
        aspect-ratio: auto !important;
        gap: 14px !important;
      }

      body[data-page="influencer"] .hero-card {
        position: relative !important;
        flex: 0 0 calc(100vw - 40px) !important;
        min-height: 360px !important;
        scroll-snap-align: start !important;
      }

      body[data-page="influencer"] .hero-body {
        order: 2 !important;
        padding: 0 24px !important;
      }

      body[data-page="influencer"] .growth-slide>div:last-child {
        grid-template-columns: 1fr 1fr !important;
      }
    }

    /* Requested polish: clean logo loop, reel modal preview, compact cards */
    .brand-logo-ticker {
      gap: 22px !important;
      animation: tick 18s linear infinite;
      will-change: transform;
    }

    .mq:hover .brand-logo-ticker {
      animation-play-state: running !important;
    }

    .brand-logo-pill {
      width: 150px !important;
      height: 48px !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    .brand-logo-pill img {
      max-height: 34px !important;
      filter: none !important;
      opacity: 1 !important;
    }

    .mq-d {
      display: none !important;
    }

    .reel-outer::before,
    .reel-outer::after {
      display: none !important;
      content: none !important;
    }

    .reel-outer {
      overflow: hidden !important;
    }

    .reel-strip {
      gap: 14px !important;
      animation: rscroll 34s linear infinite !important;
      will-change: transform;
    }

    .reel-sec:hover .reel-strip,
    .reel-outer:active .reel-strip {
      animation-play-state: running !important;
    }

    .rc-bg {
      background-color: #111 !important;
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
    }

    .rc-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(123, 108, 246, .2), rgba(0, 0, 0, .38));
    }

    .rc-play {
      opacity: 1 !important;
      transform: translate(-50%, -50%) scale(1) !important;
    }

    .lb-video {
      background: #050505 !important;
    }

    .lb-frame {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    body[data-page="influencer"] .hero-card {
      display: grid !important;
      grid-template-rows: 1fr auto !important;
      gap: 0 !important;
      overflow: hidden !important;
      background: #fff !important;
    }

    body[data-page="influencer"] .hero-mock-media {
      height: auto !important;
      min-height: 0 !important;
      border-radius: 6px 6px 0 0 !important;
      background-image: url("brands/abstract-logos--600x188.png") !important;
      background-color: #171717 !important;
      background-size: 74% auto !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
    }

    body[data-page="influencer"] .hero-mock-media::before {
      display: none !important;
      content: none !important;
    }

    body[data-page="influencer"] .hero-mock-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(123, 108, 246, .18), rgba(0, 0, 0, .42));
    }

    body[data-page="influencer"] .hero-mock-cap {
      left: 16px !important;
      right: 16px !important;
      bottom: 18px !important;
      width: auto !important;
      max-width: none !important;
      border-radius: 999px !important;
      font-size: 13px !important;
      line-height: 1.2 !important;
      text-align: center !important;
      padding: 8px 12px !important;
      z-index: 2 !important;
    }

    body[data-page="influencer"] .hero-mock-name,
    body[data-page="influencer"] .hero-mock-role {
      padding-left: 18px !important;
      padding-right: 18px !important;
    }

    body[data-page="influencer"] .hero-mock-name {
      margin-top: 16px !important;
      font-size: 20px !important;
      line-height: 1.15 !important;
    }

    body[data-page="influencer"] .hero-mock-role {
      padding-bottom: 18px !important;
    }

    body[data-page="influencer"] .growth-brand {
      font-size: 0 !important;
      line-height: 0 !important;
    }

    body[data-page="influencer"] .growth-brand .growth-logo {
      width: 118px !important;
      height: 42px !important;
      flex-basis: 118px !important;
    }

    @media (max-width: 767px) {

      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }

      .brand-logo-ticker {
        gap: 16px !important;
        animation-duration: 15s;
      }

      .brand-logo-pill {
        width: 126px !important;
        height: 42px !important;
      }

      .brand-logo-pill img {
        max-height: 28px !important;
      }

      .reel-strip {
        gap: 12px !important;
        padding: 0 20px !important;
      }

      body[data-page="influencer"] .hero {
        overflow: hidden !important;
      }

      body[data-page="influencer"] .hero-media {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scrollbar-width: none !important;
      }

      body[data-page="influencer"] .hero-media::-webkit-scrollbar {
        display: none !important;
      }

      body[data-page="influencer"] .hero-mock {
        width: auto !important;
        max-width: none !important;
        gap: 16px !important;
        padding-right: 20px !important;
      }

      body[data-page="influencer"] .hero-card {
        flex: 0 0 calc(100vw - 40px) !important;
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        min-height: 430px !important;
      }
    }

    /* Creative production page rebuild */
    body[data-page="creative"] {
      background: var(--site-bg) !important;
    }

    body[data-page="creative"] .creative-hero {
      background: #0d0d0f !important;
      color: #fff !important;
    }

    body[data-page="creative"] .creative-hero .hero-sub {
      color: rgba(255, 255, 255, .68) !important;
    }

    body[data-page="creative"] .creative-hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 75% 20%, rgba(123, 108, 246, .34), transparent 34%),
        linear-gradient(145deg, #080809 0%, #17151f 46%, #0b0b0d 100%);
    }

    body[data-page="creative"] .creative-hero-bg::before {
      content: "";
      position: absolute;
      inset: 14% 6% auto auto;
      width: min(560px, 42vw);
      height: min(420px, 44vh);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: linear-gradient(135deg, rgba(247, 255, 234, .12), rgba(123, 108, 246, .2));
      transform: rotate(-4deg);
    }

    .ch-frame {
      position: absolute;
      display: flex;
      align-items: flex-end;
      min-height: 260px;
      border-radius: 10px;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, .18);
      box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
      background: #fff;
      overflow: hidden;
    }

    .ch-frame::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 8px;
      background: linear-gradient(135deg, #8a7cff, #f5d4c0 58%, #111);
    }

    .ch-frame span {
      position: relative;
      z-index: 1;
      color: #111;
      font-weight: 700;
    }

    .ch-frame-a {
      right: 18%;
      top: 16%;
      width: 210px;
      transform: rotate(-8deg);
    }

    .ch-frame-b {
      right: 34%;
      top: 28%;
      width: 240px;
      min-height: 200px;
      transform: rotate(5deg);
    }

    .ch-frame-c {
      right: 7%;
      top: 34%;
      width: 220px;
      min-height: 230px;
      transform: rotate(8deg);
    }

    .creative-sec {
      background: var(--site-bg);
      padding: 96px 0;
      overflow: hidden;
    }

    .creative-head {
      width: min(1200px, calc(100% - 112px));
      margin: 0 auto 44px;
    }

    .creative-head span,
    .creative-adfilm-cta span {
      display: block;
      color: #9a9a9a;
      font-size: 12px;
      line-height: 1;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .creative-head h2,
    .creative-adfilm-cta h2 {
      max-width: 940px;
      margin: 0;
      color: #171717;
      font-size: clamp(38px, 5vw, 68px);
      line-height: .98;
      letter-spacing: 0;
    }

    .creative-head p {
      max-width: 560px;
      margin: 20px 0 0;
      color: #5a5a5a;
      font-size: 17px;
      line-height: 1.7;
    }

    .social-wall {
      width: min(1260px, calc(100% - 72px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(7, minmax(120px, 1fr));
      align-items: start;
      gap: 22px;
    }

    .social-card {
      min-height: 250px;
      border-radius: 6px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .08);
      box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
      overflow: hidden;
    }

    .social-card:nth-child(1) {
      grid-column: span 2;
      margin-top: 58px;
    }

    .social-card:nth-child(2) {
      grid-column: span 1;
    }

    .social-card:nth-child(3) {
      grid-column: span 1;
      margin-top: 82px;
    }

    .social-card:nth-child(4) {
      grid-column: span 1;
      margin-top: 26px;
    }

    .social-card:nth-child(5) {
      grid-column: span 1;
      margin-top: 70px;
    }

    .social-card:nth-child(6) {
      grid-column: span 1;
      margin-top: 12px;
    }

    .social-card:nth-child(7) {
      grid-column: span 1;
      margin-top: 98px;
    }

    .phone-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 38px;
      padding: 0 12px;
      color: #333;
      font-size: 11px;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .phone-top i {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
    }

    .phone-top.dark {
      color: #f7ffea;
      background: #141414;
      border-color: #141414;
    }

    .phone-media {
      position: relative;
      width: 100%;
      min-height: 220px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      border: 0;
      color: #fff;
      font: inherit;
      text-align: center;
      cursor: pointer;
      overflow: hidden;
    }

    .phone-media strong {
      position: relative;
      z-index: 2;
      display: block;
      width: 100%;
      padding: 20px 10px;
      font-size: 18px;
      line-height: 1;
      text-shadow: 0 3px 18px rgba(0, 0, 0, .32);
    }

    .phone-media b {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 3;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, .72);
      font-size: 14px;
    }

    .sunset {
      background: linear-gradient(160deg, #ffb46b, #f27c7c 45%, #4d3d91);
    }

    .product {
      background: linear-gradient(160deg, #202020, #8a7cff 52%, #f7ffea);
    }

    .cream {
      background: linear-gradient(160deg, #ffe4c7, #ffffff 44%, #7b6cf6);
    }

    .fitness {
      background: linear-gradient(160deg, #1d1d1d, #cda186 52%, #fff);
    }

    .food {
      background: linear-gradient(160deg, #efe1b4, #c65a3a 54%, #342515);
    }

    .makeup {
      background: linear-gradient(160deg, #f4cadb, #b05b82 48%, #111);
    }

    .travel {
      background: linear-gradient(160deg, #7fc7e8, #fff0b8 52%, #7659d9);
    }

    .phone-actions {
      padding: 12px;
      color: #777;
      font-size: 11px;
    }

    .packaging-grid,
    .ugc-video-grid {
      width: min(1200px, calc(100% - 112px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }

    .pack-card {
      min-height: 410px;
      padding: 28px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .08);
    }

    .pack-visual {
      height: 245px;
      position: relative;
      border-radius: 8px;
      background: linear-gradient(135deg, #111, #333);
      overflow: hidden;
    }

    .pack-visual i,
    .pack-visual b {
      position: absolute;
      display: block;
    }

    .pack-box .pack-visual i {
      inset: 54px 46px 34px;
      border-radius: 6px;
      background: linear-gradient(135deg, #8a7cff, #f7ffea);
      transform: skewY(-6deg);
    }

    .pack-box .pack-visual b {
      left: 48px;
      top: 40px;
      width: 46%;
      height: 24px;
      background: #111;
    }

    .pack-tube .pack-visual i {
      left: 50%;
      bottom: 28px;
      width: 78px;
      height: 176px;
      border-radius: 999px 999px 18px 18px;
      background: linear-gradient(180deg, #f7ffea, #8a7cff);
      transform: translateX(-50%);
    }

    .pack-tube .pack-visual b {
      left: 34%;
      bottom: 28px;
      width: 32%;
      height: 44px;
      background: #111;
    }

    .pack-pouch .pack-visual {
      background: linear-gradient(135deg, #f2d49c, #f7ffea);
    }

    .pack-pouch .pack-visual i {
      left: 20%;
      right: 20%;
      bottom: 26px;
      height: 170px;
      border-radius: 18px 18px 10px 10px;
      background: linear-gradient(155deg, #111, #7b6cf6);
    }

    .pack-pouch .pack-visual b {
      left: 34%;
      top: 86px;
      width: 32%;
      height: 42px;
      border-radius: 999px;
      background: #f7ffea;
    }

    .pack-card h3 {
      margin: 24px 0 10px;
      color: #171717;
      font-size: 26px;
      line-height: 1.1;
    }

    .pack-card p {
      margin: 0;
      color: #606060;
      line-height: 1.65;
    }

    .aplus-panel {
      width: min(1200px, calc(100% - 112px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 76px 1fr 360px;
      gap: 30px;
      padding: 34px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .08);
    }

    .aplus-thumbs {
      display: grid;
      gap: 12px;
    }

    .aplus-thumbs span {
      border-radius: 8px;
      background: linear-gradient(135deg, #f7ffea, #7b6cf6);
      border: 1px solid rgba(0, 0, 0, .08);
    }

    .aplus-product {
      display: grid;
      gap: 22px;
    }

    .aplus-packshot {
      min-height: 360px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .95) 0 26%, transparent 26%),
        linear-gradient(135deg, #171717, #49504b 48%, #f7ffea);
      overflow: hidden;
    }

    .aplus-packshot strong {
      max-width: 380px;
      color: #111;
      font-size: clamp(30px, 4vw, 54px);
      line-height: .96;
      text-align: center;
    }

    .aplus-modules {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .aplus-modules figure {
      margin: 0;
      min-height: 130px;
      border-radius: 8px;
      background: #f7ffea;
      overflow: hidden;
    }

    .aplus-modules div {
      height: 86px;
      background: linear-gradient(135deg, #8a7cff, #f6c5aa);
    }

    .aplus-modules figcaption {
      padding: 12px;
      color: #444;
      font-size: 13px;
    }

    .aplus-info {
      padding: 10px 0 0;
    }

    .aplus-info h3 {
      margin: 0;
      font-size: 34px;
      line-height: 1.12;
      color: #171717;
    }

    .aplus-info p {
      color: #5f5f5f;
      line-height: 1.7;
    }

    .aplus-info span {
      display: inline-flex;
      border-radius: 999px;
      padding: 10px 16px;
      border: 1px solid rgba(0, 0, 0, .12);
      color: #171717;
    }

    .ugc-video-card {
      min-height: 430px;
      position: relative;
      border: 0;
      border-radius: 8px;
      padding: 24px;
      color: #fff;
      text-align: left;
      cursor: pointer;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .58)),
        linear-gradient(145deg, #7b6cf6, #e2b091 48%, #171717);
      overflow: hidden;
    }

    .ugc-video-card.alt {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)),
        linear-gradient(145deg, #171717, #8a7cff 55%, #f7ffea);
    }

    .ugc-video-card.warm {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .58)),
        linear-gradient(145deg, #f7cda6, #9e6358 48%, #111);
    }

    .ugc-video-card::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 34%;
      height: 70%;
      border-radius: 999px 999px 0 0;
      background: rgba(255, 255, 255, .22);
      transform: translateX(-50%);
    }

    .ugc-video-card span,
    .ugc-video-card b {
      position: relative;
      z-index: 1;
    }

    .ugc-video-card span {
      position: absolute;
      left: 24px;
      bottom: 24px;
      max-width: 190px;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
    }

    .ugc-video-card b {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, .68);
      font-size: 16px;
    }

    .creative-adfilm-cta {
      min-height: 86svh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background: #0a0a0b;
    }

    .adfilm-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .28)),
        url("brands/abstract-logos--600x188.png") center / 55% auto no-repeat,
        linear-gradient(135deg, #111, #7b6cf6 50%, #1a1a1a);
      opacity: .92;
    }

    .adfilm-bg::after {
      content: "";
      position: absolute;
      inset: 9% 8%;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent);
    }

    .adfilm-content {
      position: relative;
      z-index: 1;
      width: min(1200px, calc(100% - 112px));
      margin: 0 auto;
    }

    .creative-adfilm-cta h2 {
      color: #fff;
      max-width: 780px;
    }

    .creative-adfilm-cta p {
      max-width: 520px;
      color: rgba(255, 255, 255, .72);
      font-size: 18px;
      line-height: 1.7;
    }

    .adfilm-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .adfilm-actions button,
    .adfilm-actions a {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0 26px;
      font: inherit;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
    }

    .adfilm-actions button {
      border: 0;
      background: #fff;
      color: #111;
    }

    .adfilm-actions a {
      border: 1px solid rgba(255, 255, 255, .4);
      color: #fff;
    }

    @media (max-width: 980px) {

      .creative-head,
      .packaging-grid,
      .ugc-video-grid,
      .aplus-panel,
      .adfilm-content {
        width: min(100% - 40px, 1200px);
      }

      .social-wall {
        width: calc(100% - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .social-card,
      .social-card:nth-child(n) {
        grid-column: span 1;
        margin-top: 0;
      }

      .social-card:nth-child(2n) {
        margin-top: 38px;
      }

      .packaging-grid,
      .ugc-video-grid {
        grid-template-columns: 1fr;
      }

      .aplus-panel {
        grid-template-columns: 1fr;
        padding: 20px;
      }

      .aplus-thumbs {
        grid-template-columns: repeat(5, 1fr);
        min-height: 62px;
      }

      .aplus-modules {
        grid-template-columns: 1fr;
      }

      .ch-frame-a {
        right: 6%;
        top: 12%;
      }

      .ch-frame-b,
      .ch-frame-c {
        display: none;
      }
    }

    @media (max-width: 767px) {
      body[data-page="creative"] .creative-hero {
        min-height: 100svh !important;
      }

      .creative-sec {
        padding: 72px 0;
      }

      .creative-head h2,
      .creative-adfilm-cta h2 {
        font-size: clamp(34px, 12vw, 52px);
      }

      .social-wall {
        grid-template-columns: 1fr;
      }

      .social-card:nth-child(2n) {
        margin-top: 0;
      }

      .phone-media {
        min-height: 260px;
      }

      .pack-card {
        min-height: auto;
      }

      .aplus-packshot {
        min-height: 280px;
      }

      .ugc-video-card {
        min-height: 360px;
      }

      .creative-adfilm-cta {
        min-height: 760px;
      }
    }

    /* Creative page correction pass: calmer, premium, less fake mockup-heavy */
    body[data-page="creative"] .creative-hero {
      min-height: 100svh !important;
      background: #0c0c0d !important;
    }

    body[data-page="creative"] .creative-hero-bg {
      background:
        radial-gradient(circle at 78% 18%, rgba(123, 108, 246, .28), transparent 30%),
        radial-gradient(circle at 18% 74%, rgba(247, 255, 234, .1), transparent 26%),
        linear-gradient(135deg, #080809 0%, #111116 58%, #050506 100%) !important;
    }

    body[data-page="creative"] .creative-hero-bg::before {
      display: none !important;
    }

    body[data-page="creative"] .ch-frame {
      display: none !important;
    }

    body[data-page="creative"] .ch-filmstrip {
      position: absolute;
      right: 56px;
      bottom: 76px;
      width: min(520px, 40vw);
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 8px;
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(18px);
    }

    body[data-page="creative"] .ch-filmstrip span {
      min-height: 132px;
      display: flex;
      align-items: flex-end;
      padding: 12px 8px;
      border-radius: 5px;
      color: rgba(255, 255, 255, .76);
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      background: linear-gradient(155deg, rgba(123, 108, 246, .75), rgba(255, 255, 255, .08));
    }

    body[data-page="creative"] .ch-filmstrip span:nth-child(even) {
      transform: translateY(-22px);
      background: linear-gradient(155deg, rgba(247, 255, 234, .2), rgba(255, 255, 255, .05));
    }

    body[data-page="creative"] .creative-head {
      margin-bottom: 34px !important;
    }

    body[data-page="creative"] .creative-head h2 {
      max-width: 980px !important;
      font-size: clamp(38px, 4.2vw, 62px) !important;
    }

    body[data-page="creative"] .creative-head p {
      max-width: 520px !important;
      margin-top: 18px !important;
    }

    body[data-page="creative"] .social-wall {
      width: min(1200px, calc(100% - 112px)) !important;
      display: grid !important;
      grid-template-columns: 1.15fr .85fr 1fr .85fr !important;
      gap: 18px !important;
      align-items: stretch !important;
    }

    body[data-page="creative"] .social-card {
      min-height: 360px !important;
      margin-top: 0 !important;
      grid-column: auto !important;
      border-radius: 8px !important;
      border: 1px solid rgba(0, 0, 0, .08) !important;
      background: #fff !important;
      box-shadow: none !important;
    }

    body[data-page="creative"] .social-card:nth-child(1) {
      grid-column: span 2 !important;
    }

    body[data-page="creative"] .social-card:nth-child(4) {
      grid-row: span 2 !important;
    }

    body[data-page="creative"] .social-card:nth-child(n+6) {
      display: none !important;
    }

    body[data-page="creative"] .phone-top {
      height: 46px !important;
      padding: 0 16px !important;
      background: transparent !important;
      color: #777 !important;
      border-bottom-color: rgba(0, 0, 0, .06) !important;
    }

    body[data-page="creative"] .phone-media {
      min-height: 250px !important;
      align-items: flex-end !important;
      border-radius: 0 !important;
      isolation: isolate;
    }

    body[data-page="creative"] .phone-media::before {
      content: "";
      position: absolute;
      inset: 22px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .2);
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .18), transparent 38%),
        linear-gradient(135deg, rgba(123, 108, 246, .92), rgba(246, 203, 174, .72));
      z-index: 0;
    }

    body[data-page="creative"] .phone-media strong {
      width: auto !important;
      margin: 0 22px 22px !important;
      padding: 9px 13px !important;
      border-radius: 999px !important;
      background: rgba(0, 0, 0, .72) !important;
      color: #fff !important;
      font-size: 12px !important;
      letter-spacing: .08em !important;
      text-transform: uppercase !important;
    }

    body[data-page="creative"] .phone-media b {
      width: 42px !important;
      height: 42px !important;
      background: #fff !important;
      color: #111 !important;
    }

    body[data-page="creative"] .phone-actions {
      padding: 16px !important;
      font-size: 12px !important;
      color: #777 !important;
    }

    body[data-page="creative"] .packaging-grid {
      align-items: stretch !important;
    }

    body[data-page="creative"] .pack-card {
      min-height: 310px !important;
      padding: 30px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-end !important;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .96)),
        linear-gradient(135deg, rgba(123, 108, 246, .28), rgba(247, 255, 234, .9)) !important;
      box-shadow: none !important;
    }

    body[data-page="creative"] .pack-card::before {
      content: "";
      width: 100%;
      height: 116px;
      margin-bottom: auto;
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, .07);
      background:
        linear-gradient(90deg, #111 0 28%, transparent 28%),
        linear-gradient(135deg, #f7ffea, #7b6cf6);
    }

    body[data-page="creative"] .pack-visual {
      display: none !important;
    }

    body[data-page="creative"] .pack-card h3 {
      font-size: 25px !important;
    }

    body[data-page="creative"] .aplus-panel {
      display: grid !important;
      grid-template-columns: 78px 1fr 330px !important;
      gap: 24px !important;
      padding: 28px !important;
      background: #fff !important;
      box-shadow: none !important;
    }

    body[data-page="creative"] .aplus-packshot {
      min-height: 320px !important;
      background:
        linear-gradient(90deg, #f7ffea 0 24%, transparent 24%),
        linear-gradient(135deg, #fff, #d9d3ff 52%, #171717) !important;
    }

    body[data-page="creative"] .aplus-packshot strong {
      font-size: clamp(32px, 3.6vw, 48px) !important;
      color: #111 !important;
    }

    body[data-page="creative"] .aplus-modules div {
      background: linear-gradient(135deg, rgba(123, 108, 246, .8), rgba(247, 255, 234, .95)) !important;
    }

    body[data-page="creative"] .aplus-info h3 {
      font-size: 30px !important;
    }

    body[data-page="creative"] .ugc-video-card {
      min-height: 390px !important;
      border: 1px solid rgba(0, 0, 0, .08) !important;
      box-shadow: none !important;
    }

    body[data-page="creative"] .ugc-video-card b {
      background: #fff !important;
      color: #111 !important;
      font-size: 12px !important;
      text-transform: uppercase !important;
    }

    body[data-page="creative"] .creative-adfilm-cta {
      min-height: 92svh !important;
    }

    body[data-page="creative"] .adfilm-bg {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .32)),
        radial-gradient(circle at 72% 42%, rgba(123, 108, 246, .45), transparent 30%),
        linear-gradient(135deg, #080809, #171717) !important;
    }

    body[data-page="creative"] .adfilm-bg::after {
      inset: 12% 8% !important;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent),
        repeating-linear-gradient(90deg, transparent 0 86px, rgba(255, 255, 255, .08) 86px 87px) !important;
    }

    @media (max-width: 980px) {
      body[data-page="creative"] .ch-filmstrip {
        right: 24px;
        bottom: 30px;
        width: calc(100% - 48px);
        opacity: .5;
      }

      body[data-page="creative"] .ch-filmstrip span {
        min-height: 86px;
      }

      body[data-page="creative"] .social-wall {
        width: calc(100% - 40px) !important;
        grid-template-columns: 1fr !important;
      }

      body[data-page="creative"] .social-card,
      body[data-page="creative"] .social-card:nth-child(1),
      body[data-page="creative"] .social-card:nth-child(4) {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 320px !important;
      }

      body[data-page="creative"] .social-card:nth-child(n+5) {
        display: none !important;
      }

      body[data-page="creative"] .aplus-panel {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 767px) {
      body[data-page="creative"] .ch-filmstrip {
        display: none !important;
      }

      body[data-page="creative"] .creative-head h2 {
        font-size: clamp(34px, 11vw, 48px) !important;
      }

      body[data-page="creative"] .phone-media {
        min-height: 240px !important;
      }
    }

    /* Creative page V2: aligned with existing alphanumero service-page design */
    body[data-page="creative"] .creative-hero-v2 {
      background: #0b0b0c !important;
    }

    body[data-page="creative"] .creative-hero-bg-v2 {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 16%, rgba(123, 108, 246, .34), transparent 30%),
        radial-gradient(circle at 22% 74%, rgba(247, 255, 234, .12), transparent 28%),
        linear-gradient(135deg, #070708 0%, #111113 58%, #050506 100%);
    }

    body[data-page="creative"] .creative-hero-bg-v2::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, .2));
    }

    .creative-hero-board {
      position: absolute;
      right: 56px;
      bottom: 70px;
      z-index: 1;
      width: min(500px, 38vw);
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 12px;
      opacity: .95;
    }

    .hero-board-main,
    .hero-board-side span {
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 8px;
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(18px);
    }

    .hero-board-main {
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5)),
        linear-gradient(140deg, rgba(123, 108, 246, .95), rgba(247, 255, 234, .18));
    }

    .hero-board-main span,
    .hero-board-side span {
      color: rgba(255, 255, 255, .58);
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero-board-main strong {
      color: #fff;
      font-size: 34px;
      line-height: 1;
      margin-top: 10px;
    }

    .hero-board-side {
      display: grid;
      gap: 12px;
    }

    .hero-board-side span {
      min-height: 74px;
      display: flex;
      align-items: flex-end;
      padding: 14px;
    }

    body[data-page="creative"] .creative-hero-v2 .hero-row {
      max-width: 520px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 22px !important;
    }

    body[data-page="creative"] .creative-hero-v2 .hero-sub {
      max-width: 450px !important;
    }

    body[data-page="creative"] .creative-hero-v2 .hero-btns {
      margin-left: 0 !important;
    }

    .creative-overview,
    .creative-social-sec,
    .creative-packaging-sec,
    .creative-aplus-sec,
    .creative-ugc-sec,
    .creative-film-cta {
      background: var(--site-bg) !important;
      position: relative;
      z-index: 1;
    }

    .creative-studio-art {
      width: 100%;
      height: 100%;
      position: relative;
      background:
        linear-gradient(135deg, rgba(123, 108, 246, .18), rgba(255, 255, 255, .68)),
        var(--site-bg);
    }

    .creative-studio-art::before,
    .creative-studio-art::after {
      content: "";
      position: absolute;
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fff;
    }

    .creative-studio-art::before {
      left: 9%;
      top: 12%;
      width: 48%;
      height: 68%;
      box-shadow: 42px 30px 0 rgba(123, 108, 246, .24);
    }

    .creative-studio-art::after {
      right: 9%;
      bottom: 12%;
      width: 36%;
      height: 48%;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .08)),
        linear-gradient(135deg, #7B6CF6, #f7ffea);
    }

    .creative-lede {
      max-width: 390px;
      margin: 0;
      color: #666;
      font-size: 14px;
      line-height: 1.75;
    }

    .social-showcase {
      display: grid;
      grid-template-columns: 1.15fr .8fr 1fr;
      grid-auto-rows: 230px;
      gap: 18px;
      margin-top: 42px;
    }

    .social-tile {
      position: relative;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 24px;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .96)),
        linear-gradient(135deg, rgba(123, 108, 246, .48), rgba(247, 255, 234, .9));
      color: #1A1A1A;
      text-align: left;
      font: inherit;
      cursor: default;
      overflow: hidden;
    }

    button.social-tile {
      cursor: pointer;
    }

    .social-tile::before {
      content: "";
      position: absolute;
      inset: 22px 22px auto auto;
      width: 96px;
      height: 150px;
      border-radius: 999px 999px 8px 8px;
      background: rgba(255, 255, 255, .52);
      border: 1px solid rgba(255, 255, 255, .54);
    }

    .social-tile.large {
      grid-column: span 2;
    }

    .social-tile.tall {
      grid-row: span 2;
      min-height: 478px;
    }

    .social-tile.wide {
      grid-column: span 2;
    }

    .social-tile.dark {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .72)),
        linear-gradient(135deg, #171717, #7B6CF6);
      color: #fff;
    }

    .social-tile span,
    .package-card span {
      position: relative;
      z-index: 1;
      display: block;
      color: #7B6CF6;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .social-tile.dark span {
      color: rgba(255, 255, 255, .62);
    }

    .social-tile h3,
    .package-card h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      max-width: 360px;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1.05;
      letter-spacing: -.02em;
    }

    .social-tile p,
    .package-card p {
      position: relative;
      z-index: 1;
      max-width: 320px;
      margin: 12px 0 0;
      color: #666;
      font-size: 14px;
      line-height: 1.65;
    }

    .social-tile.dark p {
      color: rgba(255, 255, 255, .68);
    }

    .social-tile b {
      position: relative;
      z-index: 1;
      display: inline-flex;
      margin-top: 20px;
      border-radius: 999px;
      padding: 9px 14px;
      background: #fff;
      color: #111;
      font-size: 12px;
      font-weight: 500;
    }

    .creative-package-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      margin-top: 42px;
    }

    .package-card {
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px;
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fff;
      overflow: hidden;
    }

    .package-visual {
      position: relative;
      flex: 1;
      min-height: 210px;
      margin: -4px -4px 26px;
      border-radius: 8px;
      background: linear-gradient(135deg, #111, #313131);
    }

    .package-visual::before,
    .package-visual::after {
      content: "";
      position: absolute;
      background: #f7ffea;
    }

    .package-visual.box::before {
      left: 18%;
      top: 20%;
      width: 58%;
      height: 58%;
      border-radius: 8px;
      transform: skewY(-5deg);
      background: linear-gradient(135deg, #f7ffea, #7B6CF6);
    }

    .package-visual.box::after {
      left: 28%;
      top: 34%;
      width: 38%;
      height: 18px;
      border-radius: 999px;
      background: #111;
    }

    .package-visual.tube::before {
      left: 50%;
      bottom: 12%;
      width: 86px;
      height: 72%;
      border-radius: 999px 999px 18px 18px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, #fff, #7B6CF6);
    }

    .package-visual.tube::after {
      left: 35%;
      bottom: 18%;
      width: 30%;
      height: 44px;
      border-radius: 4px;
      background: #111;
    }

    .package-visual.pouch {
      background: linear-gradient(135deg, #f2d6a6, #f7ffea);
    }

    .package-visual.pouch::before {
      left: 22%;
      right: 22%;
      bottom: 12%;
      height: 70%;
      border-radius: 22px 22px 10px 10px;
      background: linear-gradient(135deg, #111, #7B6CF6);
    }

    .package-visual.pouch::after {
      left: 35%;
      top: 34%;
      width: 30%;
      height: 34px;
      border-radius: 999px;
      background: #f7ffea;
    }

    .aplus-showcase {
      display: grid;
      grid-template-columns: 74px 1fr 340px;
      gap: 22px;
      margin-top: 42px;
      padding: 28px;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 8px;
      background: #fff;
    }

    .aplus-thumbs {
      display: grid;
      gap: 10px;
    }

    .aplus-thumbs span {
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, .08);
      background: linear-gradient(135deg, #f7ffea, rgba(123, 108, 246, .46));
    }

    .aplus-hero-card {
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      border-radius: 8px;
      background:
        linear-gradient(90deg, #f7ffea 0 28%, transparent 28%),
        linear-gradient(135deg, #fff, #cfc8ff 52%, #171717);
    }

    .aplus-hero-card span,
    .aplus-badges span {
      color: #7B6CF6;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .aplus-hero-card h3,
    .aplus-info-card h3 {
      margin: 10px 0 0;
      color: #1A1A1A;
      font-size: clamp(30px, 3vw, 46px);
      line-height: 1;
      letter-spacing: -.03em;
    }

    .aplus-info-card {
      padding: 8px 0;
    }

    .aplus-info-card p {
      margin: 18px 0 24px;
      color: #666;
      font-size: 15px;
      line-height: 1.7;
    }

    .aplus-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .aplus-badges span {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, .1);
      color: #1A1A1A;
    }

    .aplus-mod-row {
      grid-column: 2 / 4;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .aplus-mod-row span {
      min-height: 118px;
      display: flex;
      align-items: flex-end;
      padding: 16px;
      border-radius: 8px;
      background: var(--site-bg);
      color: #555;
      font-size: 13px;
    }

    .creative-film-cta {
      padding: 100px 0;
    }

    .film-panel {
      min-height: 560px;
      display: grid;
      grid-template-columns: 1fr .85fr;
      gap: 32px;
      padding: 42px;
      border-radius: 8px;
      color: #fff;
      background:
        radial-gradient(circle at 78% 26%, rgba(123, 108, 246, .46), transparent 32%),
        linear-gradient(135deg, #09090a, #18181a);
      overflow: hidden;
    }

    .film-copy {
      align-self: end;
    }

    .film-copy h2 {
      max-width: 700px;
      margin: 0;
      font-size: clamp(42px, 5vw, 72px);
      line-height: .96;
      letter-spacing: -.035em;
    }

    .film-copy p {
      max-width: 480px;
      color: rgba(255, 255, 255, .68);
      font-size: 16px;
      line-height: 1.7;
    }

    .film-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .film-actions button,
    .film-actions a,
    .film-preview {
      border: 0;
      font: inherit;
      cursor: pointer;
    }

    .film-actions button,
    .film-actions a {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 22px;
      text-decoration: none;
      font-size: 13px;
    }

    .film-actions button {
      background: #fff;
      color: #111;
    }

    .film-actions a {
      border: 1px solid rgba(255, 255, 255, .34);
      color: #fff;
    }

    .film-preview {
      min-height: 430px;
      align-self: center;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .64)),
        linear-gradient(135deg, #7B6CF6, #d3a088 48%, #111);
      position: relative;
    }

    .film-preview span {
      position: absolute;
      left: 24px;
      bottom: 24px;
      border-radius: 999px;
      padding: 10px 14px;
      background: rgba(0, 0, 0, .62);
      color: #fff;
      font-size: 12px;
    }

    body[data-page="creative"] .contact-sec {
      background: var(--site-bg) !important;
    }

    body[data-page="creative"] .cform {
      display: flex !important;
    }

    @media (max-width: 980px) {
      .creative-hero-board {
        display: none;
      }

      .social-showcase,
      .creative-package-grid,
      .aplus-showcase,
      .film-panel {
        grid-template-columns: 1fr;
      }

      .social-tile.large,
      .social-tile.wide,
      .aplus-mod-row {
        grid-column: auto;
      }

      .social-tile.tall {
        grid-row: auto;
        min-height: 360px;
      }

      .aplus-mod-row {
        grid-template-columns: 1fr;
      }

      .film-panel {
        padding: 26px;
      }
    }

    @media (max-width: 767px) {
      .creative-lede {
        max-width: none;
        margin-top: 16px;
      }

      .social-showcase {
        grid-auto-rows: auto;
      }

      .social-tile,
      .package-card,
      .aplus-hero-card,
      .film-preview {
        min-height: 310px;
      }

      .aplus-showcase {
        padding: 18px;
      }

      .aplus-thumbs {
        grid-template-columns: repeat(5, 1fr);
        min-height: 60px;
      }
    }

    html,
    body,
    button,
    input,
    textarea,
    select,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Switzer', sans-serif !important;
    }

    .rc-bg {
      background-color: #111 !important;
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
    }

    .rc-bg::after {
      background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .5)) !important;
    }

    .rc-bg.reel-thumb-1 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/thumbnail-Swasya-Living.webp") !important;
    }

    .rc-bg.reel-thumb-2 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/thumbnail-Continental-Coffee.webp") !important;
    }

    .rc-bg.reel-thumb-3 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/thumbnail-malgudi-yellow.webp") !important;
    }

    .rc-bg.reel-thumb-4 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/Thumbnail-Malgudi-Foodzee.webp") !important;
    }

    .rc-bg.reel-thumb-5 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/Thumbnail-EVYA.webp") !important;
    }

    .rc-bg.reel-thumb-6 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/Thumbnail-Breethr.webp") !important;
    }

    .rc-bg.reel-thumb-7 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/Thumbnail-Percol-Top-Creamy.webp") !important;
    }

    .rc-bg.reel-thumb-8 {
      background-image: url("https://alphanumero.io/wp-content/uploads/2026/07/Thumbnail-Ather.webp") !important;
    }

    /* Keep the testimonial heading row on the same compact rail as the cards. */
    .testi-sec .testi-hdr {
      box-sizing: border-box !important;
      width: min(1120px, calc(100% - 112px)) !important;
      max-width: 1120px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .testi-sec .testi-track-wrap {
      box-sizing: border-box !important;
      width: min(1120px, calc(100% - 112px)) !important;
      max-width: 1120px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    @media (max-width: 767px) {

      .testi-sec .testi-hdr,
      .testi-sec .testi-track-wrap {
        width: calc(100% - 40px) !important;
        max-width: none !important;
      }
    }

    /* Influencer hero reel cards: stable on first paint, compact, no white info panel. */
    @keyframes influencerReelCycle {

      0%,
      28% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        z-index: 3;
      }

      34%,
      62% {
        opacity: .34;
        transform: translate3d(18px, 14px, 0) scale(.985);
        z-index: 2;
      }

      68%,
      96% {
        opacity: .18;
        transform: translate3d(34px, 28px, 0) scale(.97);
        z-index: 1;
      }

      100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        z-index: 3;
      }
    }

    body[data-page="influencer"] .hero {
      min-height: 100svh !important;
      height: auto !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) !important;
      align-items: end !important;
      gap: clamp(42px, 7vw, 96px) !important;
      padding: 120px max(56px, calc((100vw - 1200px) / 2)) 72px !important;
      overflow: hidden !important;
      background: #111 !important;
    }

    body[data-page="influencer"] .hero-media {
      position: relative !important;
      inset: auto !important;
      width: 100% !important;
      height: min(610px, calc(100svh - 190px)) !important;
      min-height: 470px !important;
      margin: 0 !important;
      order: 2 !important;
      z-index: 2 !important;
      overflow: visible !important;
    }

    body[data-page="influencer"] .service-hero-bg {
      position: absolute !important;
      inset: -140px -80vw -120px -80vw !important;
      opacity: 1 !important;
    }

    body[data-page="influencer"] .hero-mock {
      position: absolute !important;
      inset: auto 0 0 auto !important;
      width: min(100%, 390px) !important;
      height: 100% !important;
      aspect-ratio: auto !important;
      display: block !important;
      margin: 0 !important;
      overflow: visible !important;
      z-index: 3 !important;
    }

    body[data-page="influencer"] .hero-mock::before,
    body[data-page="influencer"] .hero-mock::after {
      display: none !important;
      content: none !important;
    }

    body[data-page="influencer"] .hero-card {
      position: absolute !important;
      inset: 0 !important;
      display: block !important;
      padding: 0 !important;
      min-height: 0 !important;
      overflow: hidden !important;
      border: 1px solid rgba(255, 255, 255, .34) !important;
      border-radius: 18px !important;
      background: #0b0b0d !important;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .34) !important;
      backdrop-filter: none !important;
      animation: influencerReelCycle 12s infinite cubic-bezier(.16, 1, .3, 1) !important;
      transform-origin: 50% 100% !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(1) {
      animation-delay: 0s !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(2) {
      animation-delay: -4s !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(3) {
      animation-delay: -8s !important;
    }

    body[data-page="influencer"] .hero-card::before {
      content: "" !important;
      position: absolute !important;
      left: 50% !important;
      top: 0 !important;
      width: 72px !important;
      height: 14px !important;
      border-radius: 0 0 999px 999px !important;
      background: #050505 !important;
      transform: translateX(-50%) !important;
      z-index: 5 !important;
    }

    body[data-page="influencer"] .hero-mock-media {
      position: absolute !important;
      inset: 0 !important;
      height: auto !important;
      min-height: 0 !important;
      border-radius: 0 !important;
      background-color: #16161d !important;
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(1) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72)), url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=900&q=80") !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(2) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .76)), url("https://images.unsplash.com/photo-1509631179647-0177331693ae?w=900&q=80") !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(3) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .74)), url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=900&q=80") !important;
    }

    body[data-page="influencer"] .hero-mock-media::before,
    body[data-page="influencer"] .hero-mock-media::after {
      display: none !important;
      content: none !important;
    }

    body[data-page="influencer"] .hero-mock-name {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      top: 22px !important;
      z-index: 4 !important;
      margin: 0 !important;
      padding: 0 !important;
      color: #fff !important;
      font-size: 20px !important;
      line-height: 1.1 !important;
      font-weight: 500 !important;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .45) !important;
    }

    body[data-page="influencer"] .hero-mock-role {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      top: 49px !important;
      z-index: 4 !important;
      padding: 0 !important;
      color: rgba(255, 255, 255, .68) !important;
      font-size: 12px !important;
      line-height: 1.25 !important;
    }

    body[data-page="influencer"] .hero-mock-cap {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      bottom: 18px !important;
      width: auto !important;
      max-width: none !important;
      z-index: 4 !important;
      border-radius: 999px !important;
      padding: 10px 14px !important;
      background: rgba(0, 0, 0, .74) !important;
      color: #fff !important;
      text-align: center !important;
      font-size: 13px !important;
      line-height: 1.15 !important;
      font-weight: 500 !important;
    }

    body[data-page="influencer"] .hero-body {
      order: 1 !important;
      position: relative !important;
      z-index: 4 !important;
      padding: 0 !important;
      max-width: 820px !important;
    }

    @media (max-width: 860px) {
      body[data-page="influencer"] .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        padding: 96px 20px 64px !important;
        gap: 34px !important;
      }

      body[data-page="influencer"] .hero-media {
        order: 1 !important;
        width: min(100%, 430px) !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 9 / 13.4 !important;
        margin: 0 auto !important;
        overflow: visible !important;
      }

      body[data-page="influencer"] .hero-mock {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
      }

      body[data-page="influencer"] .hero-card {
        min-height: 0 !important;
        border-radius: 16px !important;
      }

      body[data-page="influencer"] .hero-body {
        order: 2 !important;
        padding: 0 !important;
      }
    }

    [data-next-page="influencer"] .hero {
      min-height: 100svh !important;
      height: auto !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) !important;
      align-items: end !important;
      gap: clamp(42px, 7vw, 96px) !important;
      padding: 120px max(56px, calc((100vw - 1200px) / 2)) 72px !important;
      overflow: hidden !important;
      background: #111 !important;
    }

    [data-next-page="influencer"] .hero-media {
      position: relative !important;
      inset: auto !important;
      width: 100% !important;
      height: min(610px, calc(100svh - 190px)) !important;
      min-height: 470px !important;
      margin: 0 !important;
      order: 2 !important;
      z-index: 2 !important;
      overflow: visible !important;
    }

    [data-next-page="influencer"] .service-hero-bg {
      position: absolute !important;
      inset: -140px -80vw -120px -80vw !important;
      opacity: 1 !important;
    }

    [data-next-page="influencer"] .hero-mock {
      position: absolute !important;
      inset: auto 0 0 auto !important;
      width: min(100%, 390px) !important;
      height: 100% !important;
      aspect-ratio: auto !important;
      display: block !important;
      margin: 0 !important;
      overflow: visible !important;
      z-index: 3 !important;
    }

    [data-next-page="influencer"] .hero-mock::before,
    [data-next-page="influencer"] .hero-mock::after {
      display: none !important;
      content: none !important;
    }

    [data-next-page="influencer"] .hero-card {
      position: absolute !important;
      inset: 0 !important;
      display: block !important;
      padding: 0 !important;
      min-height: 0 !important;
      overflow: hidden !important;
      border: 1px solid rgba(255, 255, 255, .34) !important;
      border-radius: 18px !important;
      background: #0b0b0d !important;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .34) !important;
      backdrop-filter: none !important;
      animation: influencerReelCycle 12s infinite cubic-bezier(.16, 1, .3, 1) !important;
      transform-origin: 50% 100% !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(1) {
      animation-delay: 0s !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(2) {
      animation-delay: -4s !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(3) {
      animation-delay: -8s !important;
    }

    [data-next-page="influencer"] .hero-card::before {
      content: "" !important;
      position: absolute !important;
      left: 50% !important;
      top: 0 !important;
      width: 72px !important;
      height: 14px !important;
      border-radius: 0 0 999px 999px !important;
      background: #050505 !important;
      transform: translateX(-50%) !important;
      z-index: 5 !important;
    }

    [data-next-page="influencer"] .hero-mock-media {
      position: absolute !important;
      inset: 0 !important;
      height: auto !important;
      min-height: 0 !important;
      border-radius: 0 !important;
      background-color: #16161d !important;
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(1) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72)), url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=900&q=80") !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(2) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .76)), url("https://images.unsplash.com/photo-1509631179647-0177331693ae?w=900&q=80") !important;
    }

    [data-next-page="influencer"] .hero-card:nth-child(3) .hero-mock-media {
      background-image: linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .74)), url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=900&q=80") !important;
    }

    [data-next-page="influencer"] .hero-mock-media::before,
    [data-next-page="influencer"] .hero-mock-media::after {
      display: none !important;
      content: none !important;
    }

    [data-next-page="influencer"] .hero-mock-name {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      top: 22px !important;
      z-index: 4 !important;
      margin: 0 !important;
      padding: 0 !important;
      color: #fff !important;
      font-size: 20px !important;
      line-height: 1.1 !important;
      font-weight: 500 !important;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .45) !important;
    }

    [data-next-page="influencer"] .hero-mock-role {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      top: 49px !important;
      z-index: 4 !important;
      padding: 0 !important;
      color: rgba(255, 255, 255, .68) !important;
      font-size: 12px !important;
      line-height: 1.25 !important;
    }

    [data-next-page="influencer"] .hero-mock-cap {
      position: absolute !important;
      left: 18px !important;
      right: 18px !important;
      bottom: 18px !important;
      width: auto !important;
      max-width: none !important;
      z-index: 4 !important;
      border-radius: 999px !important;
      padding: 10px 14px !important;
      background: rgba(0, 0, 0, .74) !important;
      color: #fff !important;
      text-align: center !important;
      font-size: 13px !important;
      line-height: 1.15 !important;
      font-weight: 500 !important;
    }

    [data-next-page="influencer"] .hero-body {
      order: 1 !important;
      position: relative !important;
      z-index: 4 !important;
      padding: 0 !important;
      max-width: 820px !important;
    }

    @media (max-width: 860px) {
      [data-next-page="influencer"] .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        padding: 96px 20px 64px !important;
        gap: 34px !important;
      }

      [data-next-page="influencer"] .hero-media {
        order: 1 !important;
        width: min(100%, 430px) !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 9 / 13.4 !important;
        margin: 0 auto !important;
        overflow: visible !important;
      }

      [data-next-page="influencer"] .hero-mock {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
      }

      [data-next-page="influencer"] .hero-card {
        min-height: 0 !important;
        border-radius: 16px !important;
      }

      [data-next-page="influencer"] .hero-body {
        order: 2 !important;
        padding: 0 !important;
      }
    }

    /* Seamless marquees: account for the middle gap between duplicated halves. */
    @keyframes seamlessLogoLoop {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(calc(-50% - 11px), 0, 0);
      }
    }

    @keyframes seamlessReelLoop {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(calc(-50% - 7px), 0, 0);
      }
    }

    .mq {
      overflow: hidden !important;
    }

    .mq-t.brand-logo-ticker,
    .brand-logo-ticker {
      display: flex !important;
      align-items: center !important;
      flex-wrap: nowrap !important;
      width: max-content !important;
      min-width: max-content !important;
      gap: 0 !important;
      animation: seamlessLogoLoop 18s linear infinite !important;
      will-change: transform !important;
    }

    .mq:hover .mq-t.brand-logo-ticker,
    .mq:hover .brand-logo-ticker {
      animation-play-state: running !important;
    }

    .brand-logo-pill {
      flex: 0 0 auto !important;
      width: auto !important;
      height: 70px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      box-sizing: border-box !important;
      padding: 10px 35px !important;
      border-radius: 0 !important;
      background: transparent !important;
      border: 0 !important;
    }

    .brand-logo-pill img {
      display: block !important;
      max-width: none !important;
      max-height: 40px !important;
      width: auto !important;
      height: auto !important;
      object-fit: contain !important;
    }

    .reel-outer {
      overflow: hidden !important;
    }

    .reel-strip {
      display: flex !important;
      flex-wrap: nowrap !important;
      width: max-content !important;
      min-width: max-content !important;
      gap: 14px !important;
      padding: 0 !important;
      animation: seamlessReelLoop 34s linear infinite !important;
      will-change: transform !important;
    }

    .reel-sec:hover .reel-strip,
    .reel-outer:active .reel-strip,
    .reel-outer.dragging .reel-strip {
      animation-play-state: running !important;
    }

    .reel-strip .rc {
      flex: 0 0 clamp(180px, 15vw, 230px) !important;
    }

    @media (max-width: 767px) {
      @keyframes seamlessLogoLoop {
        from {
          transform: translate3d(0, 0, 0);
        }

        to {
          transform: translate3d(calc(-50% - 8px), 0, 0);
        }
      }

      @keyframes seamlessReelLoop {
        from {
          transform: translate3d(0, 0, 0);
        }

        to {
          transform: translate3d(calc(-50% - 6px), 0, 0);
        }
      }

      .mq-t.brand-logo-ticker,
      .brand-logo-ticker {
        gap: 0 !important;
        animation-duration: 14s;
      }

      .brand-logo-pill {
        flex-basis: auto !important;
        width: auto !important;
        height: 58px !important;
        padding: 8px 35px !important;
      }

      .brand-logo-pill img {
        max-width: none !important;
        max-height: 33px !important;
      }

      .reel-strip {
        gap: 12px !important;
        padding: 0 !important;
        animation-duration: 28s !important;
      }

      .reel-strip .rc {
        flex-basis: calc((100vw - 12px) / 2) !important;
      }
    }

    /* Influencer hero slider final polish: compact card, no caption pill, smooth cycle, visible dots. */
    @keyframes influencerReelSoftCycle {

      0%,
      29% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        z-index: 3;
      }

      33%,
      95% {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(.985);
        z-index: 1;
      }

      99%,
      100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        z-index: 3;
      }
    }

    body[data-page="influencer"] .hero,
    [data-next-page="influencer"] .hero {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
      gap: clamp(38px, 6vw, 78px) !important;
      padding-bottom: 86px !important;
    }

    body[data-page="influencer"] .hero-media,
    [data-next-page="influencer"] .hero-media {
      height: min(540px, calc(100svh - 210px)) !important;
      min-height: 410px !important;
    }

    body[data-page="influencer"] .hero-mock,
    [data-next-page="influencer"] .hero-mock {
      width: min(100%, 350px) !important;
      height: calc(100% - 42px) !important;
      bottom: 42px !important;
    }

    body[data-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-card {
      border: 1px solid rgba(255, 255, 255, .38) !important;
      border-radius: 16px !important;
      box-shadow: 0 22px 68px rgba(0, 0, 0, .34) !important;
      animation: influencerReelSoftCycle 12s linear infinite !important;
      will-change: opacity, transform !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(1),
    [data-next-page="influencer"] .hero-card:nth-child(1) {
      animation-delay: 0s !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(2),
    [data-next-page="influencer"] .hero-card:nth-child(2) {
      animation-delay: -8s !important;
    }

    body[data-page="influencer"] .hero-card:nth-child(3),
    [data-next-page="influencer"] .hero-card:nth-child(3) {
      animation-delay: -4s !important;
    }

    body[data-page="influencer"] .hero-mock-cap,
    [data-next-page="influencer"] .hero-mock-cap {
      display: none !important;
    }

    body[data-page="influencer"] .hero-mock-name,
    [data-next-page="influencer"] .hero-mock-name {
      left: 20px !important;
      top: 22px !important;
      font-size: 18px !important;
    }

    body[data-page="influencer"] .hero-mock-role,
    [data-next-page="influencer"] .hero-mock-role {
      left: 20px !important;
      top: 48px !important;
    }

    body[data-page="influencer"] .hero-slider-controls,
    [data-next-page="influencer"] .hero-slider-controls {
      position: absolute !important;
      right: 0 !important;
      bottom: 0 !important;
      width: min(100%, 350px) !important;
      height: 30px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 12px !important;
      z-index: 5 !important;
      color: rgba(255, 255, 255, .86) !important;
    }

    body[data-page="influencer"] .hero-slider-arrow,
    [data-next-page="influencer"] .hero-slider-arrow {
      width: 28px !important;
      height: 28px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      border: 1px solid rgba(255, 255, 255, .26) !important;
      border-radius: 999px !important;
      background: rgba(255, 255, 255, .07) !important;
      color: rgba(255, 255, 255, .8) !important;
      font-size: 13px !important;
      line-height: 1 !important;
    }

    body[data-page="influencer"] .hero-slider-dots,
    [data-next-page="influencer"] .hero-slider-dots {
      display: inline-flex !important;
      align-items: center !important;
      gap: 7px !important;
    }

    body[data-page="influencer"] .hero-slider-dots span,
    [data-next-page="influencer"] .hero-slider-dots span {
      width: 6px !important;
      height: 6px !important;
      border-radius: 999px !important;
      background: rgba(255, 255, 255, .3) !important;
    }

    body[data-page="influencer"] .hero-slider-dots span:nth-child(1),
    [data-next-page="influencer"] .hero-slider-dots span:nth-child(1) {
      background: #7b6cf6 !important;
      box-shadow: 0 0 0 4px rgba(123, 108, 246, .16) !important;
    }

    @media (max-width: 860px) {

      body[data-page="influencer"] .hero,
      [data-next-page="influencer"] .hero {
        padding: 92px 20px 58px !important;
        gap: 30px !important;
      }

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        width: min(100%, 340px) !important;
        aspect-ratio: 9 / 13.2 !important;
        padding-bottom: 40px !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        height: calc(100% - 40px) !important;
        width: 100% !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 40px !important;
        left: 0 !important;
      }

      body[data-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-card {
        border-radius: 14px !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        width: 100% !important;
      }
    }

    /* Final mobile/navigation corrections */
    html,
    body {
      cursor: auto !important;
    }

    .cur,
    .cur-r,
    #cur,
    #cr {
      display: none !important;
    }

    .ham {
      position: relative !important;
      z-index: 10002 !important;
      pointer-events: auto !important;
    }

    .mob-nav {
      z-index: 10001 !important;
      visibility: hidden !important;
    }

    .mob-nav.open {
      visibility: visible !important;
      clip-path: circle(150% at calc(100% - 44px) 42px) !important;
      pointer-events: auto !important;
    }

    body.mob-open .mob-nav {
      visibility: visible !important;
    }

    body[data-page="influencer"] .hero,
    [data-next-page="influencer"] .hero {
      background:
        radial-gradient(circle at 10% 36%, rgba(123, 108, 246, .5), transparent 34%),
        linear-gradient(135deg, #101012 0%, #1b1830 46%, #7b6cf6 100%) !important;
    }

    body[data-page="influencer"] .service-hero-bg,
    [data-next-page="influencer"] .service-hero-bg {
      inset: -180px -80vw -140px -80vw !important;
      width: auto !important;
      height: auto !important;
      background:
        radial-gradient(circle at 12% 42%, rgba(123, 108, 246, .58), transparent 34%),
        linear-gradient(135deg, #101012 0%, #1b1830 48%, #7b6cf6 100%) !important;
    }

    @media (max-width: 860px) {

      body[data-page="influencer"] .hero,
      [data-next-page="influencer"] .hero {
        overflow: hidden !important;
        padding: 92px 0 56px !important;
      }

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: auto !important;
        height: 520px !important;
        min-height: 0 !important;
        padding: 0 0 44px !important;
        margin: 0 auto !important;
        overflow: visible !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        position: absolute !important;
        left: 50% !important;
        top: 0 !important;
        right: auto !important;
        bottom: auto !important;
        width: min(72vw, 292px) !important;
        height: 448px !important;
        transform: translateX(-50%) !important;
        overflow: visible !important;
      }

      body[data-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-card {
        animation: none !important;
        opacity: 1 !important;
        border-radius: 12px !important;
        box-shadow: 0 20px 48px rgba(0, 0, 0, .3) !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(1),
      [data-next-page="influencer"] .hero-card:nth-child(1) {
        transform: translateX(-74%) scale(.82) !important;
        z-index: 1 !important;
        opacity: .72 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(2),
      [data-next-page="influencer"] .hero-card:nth-child(2) {
        transform: translateX(0) scale(.94) !important;
        z-index: 3 !important;
        opacity: 1 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(3),
      [data-next-page="influencer"] .hero-card:nth-child(3) {
        transform: translateX(74%) scale(.82) !important;
        z-index: 1 !important;
        opacity: .72 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(1) .hero-mock-name,
      body[data-page="influencer"] .hero-card:nth-child(1) .hero-mock-role,
      body[data-page="influencer"] .hero-card:nth-child(3) .hero-mock-name,
      body[data-page="influencer"] .hero-card:nth-child(3) .hero-mock-role,
      [data-next-page="influencer"] .hero-card:nth-child(1) .hero-mock-name,
      [data-next-page="influencer"] .hero-card:nth-child(1) .hero-mock-role,
      [data-next-page="influencer"] .hero-card:nth-child(3) .hero-mock-name,
      [data-next-page="influencer"] .hero-card:nth-child(3) .hero-mock-role {
        writing-mode: vertical-rl !important;
        text-orientation: mixed !important;
        letter-spacing: .28em !important;
        text-transform: uppercase !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 28px !important;
        transform: translateX(-50%) rotate(180deg) !important;
        font-size: 13px !important;
        line-height: 1 !important;
        max-height: 160px !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(1) .hero-mock-role,
      body[data-page="influencer"] .hero-card:nth-child(3) .hero-mock-role,
      [data-next-page="influencer"] .hero-card:nth-child(1) .hero-mock-role,
      [data-next-page="influencer"] .hero-card:nth-child(3) .hero-mock-role {
        display: none !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        left: 50% !important;
        right: auto !important;
        bottom: 2px !important;
        width: min(72vw, 292px) !important;
        transform: translateX(-50%) !important;
      }

      body[data-page="influencer"] .hero-body,
      [data-next-page="influencer"] .hero-body {
        padding: 0 20px !important;
      }
    }

    /* Mobile influencer cards: hard reset to a centered card with side previews. */
    @media (max-width: 860px) {

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        height: 474px !important;
        padding: 0 0 46px !important;
        overflow: hidden !important;
        background: transparent !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 414px !important;
        margin: 0 !important;
        transform: none !important;
        background: transparent !important;
        overflow: visible !important;
      }

      body[data-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-card {
        inset: auto !important;
        top: 0 !important;
        height: 414px !important;
        width: min(62vw, 260px) !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        overflow: hidden !important;
        animation: none !important;
      }

      body[data-page="influencer"] .hero-card::before,
      [data-next-page="influencer"] .hero-card::before {
        display: none !important;
        content: none !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(1),
      [data-next-page="influencer"] .hero-card:nth-child(1) {
        left: -18px !important;
        right: auto !important;
        width: 82px !important;
        transform: none !important;
        z-index: 1 !important;
        opacity: .78 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(2),
      [data-next-page="influencer"] .hero-card:nth-child(2) {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        z-index: 3 !important;
        opacity: 1 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(3),
      [data-next-page="influencer"] .hero-card:nth-child(3) {
        left: auto !important;
        right: -18px !important;
        width: 82px !important;
        transform: none !important;
        z-index: 1 !important;
        opacity: .78 !important;
      }

      body[data-page="influencer"] .hero-mock-media,
      [data-next-page="influencer"] .hero-mock-media {
        border-radius: inherit !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        left: 50% !important;
        right: auto !important;
        bottom: 0 !important;
        width: min(62vw, 260px) !important;
        height: 32px !important;
        transform: translateX(-50%) !important;
        background: transparent !important;
      }

      body[data-page="influencer"] .hero-slider-arrow,
      [data-next-page="influencer"] .hero-slider-arrow {
        background: transparent !important;
        box-shadow: none !important;
      }
    }

    /* Influencer hero slider: remove dark card backing and make controls functional with classes. */
    body[data-page="influencer"] .hero,
    [data-next-page="influencer"] .hero {
      background:
        radial-gradient(circle at 12% 42%, rgba(123, 108, 246, .55), transparent 36%),
        linear-gradient(135deg, #17142a 0%, #231d3d 48%, #7b6cf6 100%) !important;
    }

    body[data-page="influencer"] .hero-media,
    body[data-page="influencer"] .hero-mock,
    body[data-page="influencer"] .hero-card,
    body[data-page="influencer"] .hero-slider-controls,
    [data-next-page="influencer"] .hero-media,
    [data-next-page="influencer"] .hero-mock,
    [data-next-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-slider-controls {
      background: transparent !important;
    }

    body[data-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-card {
      border: 0 !important;
      outline: 0 !important;
    }

    body[data-page="influencer"] .hero-card.is-active,
    [data-next-page="influencer"] .hero-card.is-active {
      opacity: 1 !important;
      z-index: 3 !important;
      transform: translate3d(0, 0, 0) scale(1) !important;
    }

    body[data-page="influencer"] .hero-card.is-prev,
    [data-next-page="influencer"] .hero-card.is-prev {
      opacity: .56 !important;
      z-index: 2 !important;
      transform: translate3d(-28px, 20px, 0) scale(.94) !important;
    }

    body[data-page="influencer"] .hero-card.is-next,
    [data-next-page="influencer"] .hero-card.is-next {
      opacity: .56 !important;
      z-index: 1 !important;
      transform: translate3d(28px, 40px, 0) scale(.9) !important;
    }

    body[data-page="influencer"] .hero-slider-dots span.is-active,
    [data-next-page="influencer"] .hero-slider-dots span.is-active {
      background: #7b6cf6 !important;
      box-shadow: 0 0 0 4px rgba(123, 108, 246, .16) !important;
    }

    body[data-page="influencer"] .hero-slider-dots span:not(.is-active),
    [data-next-page="influencer"] .hero-slider-dots span:not(.is-active) {
      background: rgba(255, 255, 255, .3) !important;
      box-shadow: none !important;
    }

    @media (max-width: 860px) {

      body[data-page="influencer"] .hero,
      [data-next-page="influencer"] .hero {
        background:
          radial-gradient(circle at 16% 46%, rgba(123, 108, 246, .55), transparent 38%),
          linear-gradient(135deg, #17142a 0%, #241d42 50%, #7b6cf6 100%) !important;
      }

      body[data-page="influencer"] .service-hero-bg,
      [data-next-page="influencer"] .service-hero-bg {
        display: none !important;
      }

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        height: 470px !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        height: 410px !important;
      }

      body[data-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-card {
        width: min(58vw, 242px) !important;
        height: 410px !important;
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
      }

      body[data-page="influencer"] .hero-card:not(.is-active):not(.is-prev):not(.is-next),
      [data-next-page="influencer"] .hero-card:not(.is-active):not(.is-prev):not(.is-next) {
        opacity: 0 !important;
        pointer-events: none !important;
      }

      body[data-page="influencer"] .hero-card.is-active,
      [data-next-page="influencer"] .hero-card.is-active {
        left: 50% !important;
        right: auto !important;
        width: min(58vw, 242px) !important;
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        z-index: 3 !important;
      }

      body[data-page="influencer"] .hero-card.is-prev,
      [data-next-page="influencer"] .hero-card.is-prev {
        left: -14px !important;
        right: auto !important;
        width: 78px !important;
        transform: none !important;
        opacity: .72 !important;
        z-index: 1 !important;
      }

      body[data-page="influencer"] .hero-card.is-next,
      [data-next-page="influencer"] .hero-card.is-next {
        left: auto !important;
        right: -14px !important;
        width: 78px !important;
        transform: none !important;
        opacity: .72 !important;
        z-index: 1 !important;
      }

      body[data-page="influencer"] .hero-card:nth-child(1),
      body[data-page="influencer"] .hero-card:nth-child(2),
      body[data-page="influencer"] .hero-card:nth-child(3),
      [data-next-page="influencer"] .hero-card:nth-child(1),
      [data-next-page="influencer"] .hero-card:nth-child(2),
      [data-next-page="influencer"] .hero-card:nth-child(3) {
        border: 0 !important;
        outline: 0 !important;
      }

      body[data-page="influencer"] .hero-mock-media,
      [data-next-page="influencer"] .hero-mock-media {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        width: min(58vw, 242px) !important;
        background: transparent !important;
      }
    }

    /* Final influencer slider geometry: same card language on desktop and mobile. */
    body[data-page="influencer"] .hero-media,
    [data-next-page="influencer"] .hero-media {
      overflow: visible !important;
    }

    body[data-page="influencer"] .hero-mock,
    [data-next-page="influencer"] .hero-mock {
      width: min(520px, 42vw) !important;
      background: transparent !important;
      box-shadow: none !important;
      overflow: visible !important;
    }

    body[data-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-card {
      inset: auto !important;
      top: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      outline: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      overflow: hidden !important;
      animation: none !important;
      transition: opacity .28s ease, transform .28s ease !important;
    }

    body[data-page="influencer"] .hero-mock-media,
    [data-next-page="influencer"] .hero-mock-media {
      inset: 0 !important;
      border: 0 !important;
      outline: 0 !important;
      box-shadow: none !important;
      border-radius: inherit !important;
    }

    body[data-page="influencer"] .hero-card.is-active,
    [data-next-page="influencer"] .hero-card.is-active {
      left: 50% !important;
      right: auto !important;
      width: min(350px, 72%) !important;
      height: 100% !important;
      transform: translateX(-50%) !important;
      opacity: 1 !important;
      z-index: 4 !important;
      border-radius: 14px !important;
    }

    body[data-page="influencer"] .hero-card.is-active .hero-mock-media,
    [data-next-page="influencer"] .hero-card.is-active .hero-mock-media {
      border: 1px solid rgba(255, 255, 255, .34) !important;
    }

    body[data-page="influencer"] .hero-card.is-prev,
    [data-next-page="influencer"] .hero-card.is-prev,
    body[data-page="influencer"] .hero-card.is-next,
    [data-next-page="influencer"] .hero-card.is-next {
      top: 42px !important;
      width: 74px !important;
      height: calc(100% - 96px) !important;
      transform: none !important;
      opacity: .74 !important;
      z-index: 2 !important;
      border-radius: 10px !important;
    }

    body[data-page="influencer"] .hero-card.is-prev,
    [data-next-page="influencer"] .hero-card.is-prev {
      left: 0 !important;
      right: auto !important;
    }

    body[data-page="influencer"] .hero-card.is-next,
    [data-next-page="influencer"] .hero-card.is-next {
      left: auto !important;
      right: 0 !important;
    }

    body[data-page="influencer"] .hero-card:not(.is-active):not(.is-prev):not(.is-next),
    [data-next-page="influencer"] .hero-card:not(.is-active):not(.is-prev):not(.is-next) {
      opacity: 0 !important;
      pointer-events: none !important;
    }

    body[data-page="influencer"] .hero-card.is-prev .hero-mock-role,
    body[data-page="influencer"] .hero-card.is-next .hero-mock-role,
    [data-next-page="influencer"] .hero-card.is-prev .hero-mock-role,
    [data-next-page="influencer"] .hero-card.is-next .hero-mock-role {
      display: none !important;
    }

    body[data-page="influencer"] .hero-card.is-prev .hero-mock-name,
    body[data-page="influencer"] .hero-card.is-next .hero-mock-name,
    [data-next-page="influencer"] .hero-card.is-prev .hero-mock-name,
    [data-next-page="influencer"] .hero-card.is-next .hero-mock-name {
      writing-mode: vertical-rl !important;
      text-orientation: mixed !important;
      letter-spacing: .28em !important;
      text-transform: uppercase !important;
      left: 50% !important;
      right: auto !important;
      top: auto !important;
      bottom: 28px !important;
      transform: translateX(-50%) rotate(180deg) !important;
      font-size: 12px !important;
      line-height: 1 !important;
      max-height: 170px !important;
    }

    body[data-page="influencer"] .hero-slider-controls,
    [data-next-page="influencer"] .hero-slider-controls {
      left: 50% !important;
      right: auto !important;
      width: min(350px, 72%) !important;
      transform: translateX(-50%) !important;
      background: transparent !important;
    }

    @media (max-width: 860px) {

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        height: 470px !important;
        overflow: hidden !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        width: 100% !important;
        height: 410px !important;
      }

      body[data-page="influencer"] .hero-card.is-active,
      [data-next-page="influencer"] .hero-card.is-active {
        width: min(62vw, 270px) !important;
        height: 410px !important;
        border-radius: 12px !important;
      }

      body[data-page="influencer"] .hero-card.is-prev,
      [data-next-page="influencer"] .hero-card.is-prev,
      body[data-page="influencer"] .hero-card.is-next,
      [data-next-page="influencer"] .hero-card.is-next {
        top: 24px !important;
        width: 78px !important;
        height: 360px !important;
      }

      body[data-page="influencer"] .hero-card.is-prev,
      [data-next-page="influencer"] .hero-card.is-prev {
        left: 24px !important;
      }

      body[data-page="influencer"] .hero-card.is-next,
      [data-next-page="influencer"] .hero-card.is-next {
        right: 24px !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        width: min(62vw, 270px) !important;
        bottom: 0 !important;
      }
    }

    /* Desktop influencer reel card scale and outer-border cleanup. */
    @media (min-width: 861px) {

      body[data-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-media {
        height: min(500px, calc(100svh - 235px)) !important;
        min-height: 370px !important;
      }

      body[data-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-mock {
        width: min(430px, 34vw) !important;
        height: calc(100% - 44px) !important;
        border: 0 !important;
        outline: 0 !important;
      }

      body[data-page="influencer"] .hero-card.is-active,
      [data-next-page="influencer"] .hero-card.is-active {
        width: min(288px, 67%) !important;
      }

      body[data-page="influencer"] .hero-card.is-prev,
      [data-next-page="influencer"] .hero-card.is-prev,
      body[data-page="influencer"] .hero-card.is-next,
      [data-next-page="influencer"] .hero-card.is-next {
        width: 58px !important;
        top: 44px !important;
        height: calc(100% - 108px) !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        width: min(288px, 67%) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
      }
    }

    /* Mobile final: active card matches desktop, no leaked borders, controls stay centered. */
    body[data-page="influencer"] .hero-mock,
    body[data-page="influencer"] .hero-card,
    body[data-page="influencer"] .hero-mock-media,
    [data-next-page="influencer"] .hero-mock,
    [data-next-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-mock-media {
      outline: 0 !important;
    }

    body[data-page="influencer"] .hero-mock::before,
    body[data-page="influencer"] .hero-mock::after,
    [data-next-page="influencer"] .hero-mock::before,
    [data-next-page="influencer"] .hero-mock::after {
      display: none !important;
      content: none !important;
    }

    @media (max-width: 860px) {

      body[data-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-card {
        border: 0 !important;
        outline: 0 !important;
        background-clip: padding-box !important;
      }

      body[data-page="influencer"] .hero-card.is-active,
      [data-next-page="influencer"] .hero-card.is-active {
        width: min(60vw, 258px) !important;
        border-radius: 14px !important;
      }

      body[data-page="influencer"] .hero-card.is-active .hero-mock-name,
      [data-next-page="influencer"] .hero-card.is-active .hero-mock-name {
        writing-mode: horizontal-tb !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        left: 18px !important;
        right: 18px !important;
        top: 22px !important;
        bottom: auto !important;
        transform: none !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
        max-height: none !important;
      }

      body[data-page="influencer"] .hero-card.is-active .hero-mock-role,
      [data-next-page="influencer"] .hero-card.is-active .hero-mock-role {
        display: block !important;
        writing-mode: horizontal-tb !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        left: 18px !important;
        right: 18px !important;
        top: 48px !important;
        bottom: auto !important;
        transform: none !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
      }

      body[data-page="influencer"] .hero-card.is-active .hero-mock-media,
      [data-next-page="influencer"] .hero-card.is-active .hero-mock-media {
        border: 0 !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28) !important;
      }

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        width: min(60vw, 258px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
      }
    }

    /* Remove the global hero dark overlay/backing from the influencer card stage. */
    body[data-page="influencer"] .hero-media::after,
    [data-next-page="influencer"] .hero-media::after {
      display: none !important;
      content: none !important;
      background: transparent !important;
    }

    body[data-page="influencer"] .hero-mock,
    body[data-page="influencer"] .hero-card,
    body[data-page="influencer"] .hero-slider-controls,
    [data-next-page="influencer"] .hero-mock,
    [data-next-page="influencer"] .hero-card,
    [data-next-page="influencer"] .hero-slider-controls {
      background-color: transparent !important;
      box-shadow: none !important;
    }

    body[data-page="influencer"] .hero-card::after,
    [data-next-page="influencer"] .hero-card::after {
      display: none !important;
      content: none !important;
    }

    /* Last pass: kill mobile blue outline and center desktop controls. */
    @media (max-width: 860px) {

      body[data-page="influencer"] .hero-media,
      body[data-page="influencer"] .hero-mock,
      body[data-page="influencer"] .hero-card,
      body[data-page="influencer"] .hero-mock-media,
      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-media,
      [data-next-page="influencer"] .hero-mock,
      [data-next-page="influencer"] .hero-card,
      [data-next-page="influencer"] .hero-mock-media,
      [data-next-page="influencer"] .hero-slider-controls {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
      }

      body[data-page="influencer"] .hero-card.is-active .hero-mock-media,
      [data-next-page="influencer"] .hero-card.is-active .hero-mock-media {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
      }
    }

    @media (min-width: 861px) {

      body[data-page="influencer"] .hero-slider-controls,
      [data-next-page="influencer"] .hero-slider-controls {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        justify-content: center !important;
      }
    }

    .cms-logo-text {
      display: inline-block;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      line-height: .75;
      letter-spacing: -.05em;
    }

    nav.sc .cms-logo-text,
    .cms-logo-text.dark {
      color: #1A1A1A;
    }

    .cms-hero-bg,
    .cms-service-art,
    .cms-card-art {
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 70% 30%, rgba(123, 108, 246, .5), transparent 34%),
        linear-gradient(135deg, #111, #2d2d35);
    }

    .cms-service-art {
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .7) 0 38%, transparent 38%),
        linear-gradient(135deg, #7B6CF6, #f7ffea);
    }

    .cms-section-copy {
      max-width: 380px;
      margin: 0;
      color: #666;
      font-size: 14px;
      line-height: 1.7;
    }

    .cms-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
    }

    .cms-card {
      min-width: 0 !important;
      max-width: none !important;
      flex: none !important;
    }

    .cms-card-copy {
      margin: 10px 0 0;
      color: #666;
      font-size: 14px;
      line-height: 1.6;
    }

    .cms-card-art-1 {
      background: linear-gradient(135deg, #7B6CF6, #f7ffea);
    }

    .cms-card-art-2 {
      background: linear-gradient(135deg, #111, #8d80ff);
    }

    .cms-card-art-3 {
      background: linear-gradient(135deg, #e9bd9f, #f7ffea);
    }

    .cms-card-art-4 {
      background: linear-gradient(135deg, #87d5c7, #7B6CF6);
    }

    .cms-inline-cta {
      background-size: cover;
      background-position: center;
    }

    .cms-inline-cta .eyebrow {
      color: rgba(255, 255, 255, .64);
    }

    .svc-img-frame>img {
      display: block;
    }

    .cms-testimonial-avatar-img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      border-radius: 50%;
      border: 1px solid rgba(123, 108, 246, .2);
      background: #fff;
      padding: 6px;
      margin-bottom: 26px;
    }

    .tc:has(.cms-testimonial-avatar-img) .t-avatar {
      display: none;
    }

    body[data-sanity-studio="true"],
    body[data-sanity-studio="true"] * {
      cursor: auto !important;
    }

    body[data-sanity-studio="true"] button,
    body[data-sanity-studio="true"] a,
    body[data-sanity-studio="true"] [role="button"] {
      cursor: pointer !important;
    }

    body[data-sanity-studio="true"]::after,
    body[data-sanity-studio="true"] .cur,
    body[data-sanity-studio="true"] .cur-r,
    body[data-sanity-studio="true"] .prog {
      display: none !important;
    }

    body[data-sanity-studio="true"] {
      padding-bottom: 0 !important;
      overflow-x: auto !important;
    }

    @media (max-width: 900px) {
      .cms-card-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Home final polish */
    :root {
      --site-x: 56px;
      --site-max: 1200px;
      --section-y: 100px;
      --section-y-mobile: 72px;
    }

    body[data-page="index"] .wrap,
    body[data-page="index"] .testi-sec .testi-hdr,
    body[data-page="index"] .testi-sec .testi-track-wrap {
      width: min(var(--site-max), calc(100% - (var(--site-x) * 2))) !important;
      max-width: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    body[data-page="index"] .tc {
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
    }

    /* Quote mark: force correct size and full visibility */
    body[data-page="index"] .tc-q {
      font-size: 64px !important;
      line-height: 1 !important;
      opacity: 1 !important;
      color: #7B6CF6 !important;
      margin-bottom: 4px !important;
    }

    body[data-page="index"] .reel-hdr>div,
    body[data-page="index"] .work-hdr>div,
    body[data-page="index"] .cases-hdr>div,
    body[data-page="index"] .testi-hdr>div,
    body[data-page="index"] .c-hdr>div {
      min-width: 0;
      flex: 1 1 auto;
    }

    body[data-page="index"] .sec-h {
      white-space: normal;
      overflow-wrap: normal;
      word-break: normal;
    }

    body[data-page="index"] .reel-hdr,
    body[data-page="index"] .work-hdr,
    body[data-page="index"] .c-hdr {
      flex-direction: column !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      gap: 14px !important;
    }

    body[data-page="index"] .cases-hdr,
    body[data-page="index"] .testi-hdr {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      align-items: start !important;
      gap: 14px 24px !important;
    }

    body[data-page="index"] .cases-hdr .sub,
    body[data-page="index"] .cases-hdr p,
    body[data-page="index"] .testi-hdr .sub,
    body[data-page="index"] .testi-hdr p {
      grid-column: 1 / -1 !important;
      grid-row: 2 !important;
    }

    body[data-page="index"] .cases-hdr .s-btns,
    body[data-page="index"] .testi-hdr .s-btns {
      grid-column: 2 !important;
      grid-row: 1 !important;
      justify-self: end !important;
    }

    body[data-page="index"] .reel-hdr .sub,
    body[data-page="index"] .reel-hdr p,
    body[data-page="index"] .work-hdr .sub,
    body[data-page="index"] .work-hdr p,
    body[data-page="index"] .cases-hdr .sub,
    body[data-page="index"] .cases-hdr p,
    body[data-page="index"] .testi-hdr .sub,
    body[data-page="index"] .testi-hdr p,
    body[data-page="index"] .c-hdr .sub,
    body[data-page="index"] .c-hdr p {
      flex: 0 1 auto !important;
      flex-basis: auto !important;
      max-width: 620px !important;
      min-width: 0;
      white-space: normal;
      overflow-wrap: normal;
      word-break: normal;
    }

    body[data-page="index"] .tc-auth {
      margin-top: auto !important;
    }

    body[data-page="index"] .hero-body {
      padding-left: var(--site-x) !important;
      padding-right: var(--site-x) !important;
    }

    body[data-page="index"] .mq,
    body[data-page="index"] .reel-sec,
    body[data-page="index"] .stats-sec,
    body[data-page="index"] .svc-sec,
    body[data-page="index"] .testi-sec,
    body[data-page="index"] .contact-sec {
      padding: 80px 0 !important;
    }

    body[data-page="index"] .work-sec,
    body[data-page="index"] .cases-sec {
      display: none !important;
    }

    body[data-page="index"] .hero-bg-video {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
      display: block;
    }

    body[data-page="index"] .hero-media::after {
      z-index: 2;
      background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .36) 52%, rgba(0, 0, 0, .28) 100%) !important;
    }

    body[data-page="index"] .hero-body {
      z-index: 3 !important;
    }

    body[data-page="index"] .hero-sub,
    body[data-page="index"] .sec-h+p,
    body[data-page="index"] .c-sub {
      max-width: 560px !important;
      line-height: 1.65 !important;
    }

    body[data-page="index"] .stats-sec .wrap {
      max-width: 1200px !important;
    }

    body[data-page="index"] .stats-row {
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 0 !important;
      width: 100% !important;
    }

    body[data-page="index"] .stat {
      padding: 10px 34px !important;
    }

    body[data-page="index"] .stat-n {
      font-size: clamp(58px, 7vw, 104px) !important;
      line-height: .9 !important;
    }

    body[data-page="index"] .stat-n em {
      color: #7B6CF6 !important;
      font-style: italic !important;
    }

    body[data-page="index"] .stat-l {
      font-size: 13px !important;
      letter-spacing: .12em !important;
    }

    body[data-page="index"] .svc-layout {
      grid-template-columns: 1fr 1fr !important;
      align-items: stretch !important;
      gap: 40px !important;
    }

    body[data-page="index"] .svc-img-col {
      display: flex !important;
    }

    body[data-page="index"] .svc-img-frame {
      height: auto !important;
      min-height: 100% !important;
      flex: 1 !important;
      border-radius: 16px !important;
    }

    body[data-page="index"] .svc-img-frame img {
      height: 100% !important;
      object-fit: cover !important;
    }

    body[data-page="index"] .cd a {
      color: inherit;
      text-decoration: none;
    }

    body[data-page="index"] .fsub {
      gap: 8px !important;
    }

    body[data-page="index"] .fsub::after {
      content: none !important;
      display: none !important;
    }

    @keyframes brandLoop {
      from {
        transform: translate3d(0, 0, 0)
      }

      to {
        transform: translate3d(-50%, 0, 0)
      }
    }

    @keyframes reelLoop {
      from {
        transform: translate3d(0, 0, 0)
      }

      to {
        transform: translate3d(-50%, 0, 0)
      }
    }

    @media(max-width:900px) {
      :root {
        --site-x: 24px;
      }

      body[data-page="index"] .mq,
      body[data-page="index"] .reel-sec,
      body[data-page="index"] .stats-sec,
      body[data-page="index"] .svc-sec,
      body[data-page="index"] .testi-sec,
      body[data-page="index"] .contact-sec {
        padding: 80px 0 !important;
      }

      body[data-page="index"] .stats-row {
        grid-template-columns: 1fr !important;
      }

      body[data-page="index"] .stat {
        padding: 28px 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
      }

      body[data-page="index"] .stat:last-child {
        border-bottom: 0 !important;
      }

      hr.rule {
        display: none !important;
      }

      body[data-page="index"] .svc-img-frame {
        aspect-ratio: 16/9 !important;
        height: auto !important;
        min-height: 0 !important;
        flex: none !important;
        border-radius: 12px !important;
      }

      body[data-page="index"] .svc-img-frame img {
        height: 100% !important;
        object-fit: cover !important;
      }

      body[data-page="index"] .svc-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 32px !important;
        align-items: start !important;
      }

      body[data-page="index"] .svc-img-col {
        display: block !important;
        position: relative !important;
        top: auto !important;
        width: 100% !important;
      }

      body[data-page="index"] .svc-row.svc-card-row {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: start !important;
        gap: 14px !important;
        padding: 18px 18px !important;
        border-radius: 12px !important;
        min-width: 0 !important;
      }

      body[data-page="index"] .svc-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        border-top: 0 !important;
        width: 100% !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-body {
        min-width: 0 !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-name {
        font-size: clamp(21px, 6vw, 27px) !important;
        line-height: 1.12 !important;
        white-space: normal !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-desc {
        margin-top: 8px !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px 10px !important;
        margin-top: 12px !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags span {
        margin-right: 0 !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags span::after {
        content: none !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-arr {
        opacity: 1 !important;
        transform: none !important;
        margin-top: 4px !important;
      }

      body[data-page="index"] .reel-hdr,
      body[data-page="index"] .cases-hdr,
      body[data-page="index"] .testi-hdr,
      body[data-page="index"] .c-hdr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      body[data-page="index"] .reel-hdr>*,
      body[data-page="index"] .cases-hdr>*,
      body[data-page="index"] .testi-hdr>*,
      body[data-page="index"] .c-hdr>* {
        min-width: 0;
        max-width: 100%;
      }

      body[data-page="index"] .sec-h {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        line-height: 1.06;
      }

      body[data-page="index"] .sub,
      body[data-page="index"] .c-sub,
      body[data-page="index"] .sec-h+p {
        flex: 0 1 auto !important;
        flex-basis: auto;
        min-width: 0;
        min-height: 0;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        line-height: 1.65;
      }

      body[data-page="index"] .mq {
        padding: 80px 0 !important;
        min-height: auto !important;
      }

      body[data-page="index"] .mq .reel-hdr,
      body[data-page="index"] .reel-sec .reel-hdr {
        margin-bottom: 24px !important;
      }

      body[data-page="index"] .mq-t,
      body[data-page="index"] .brand-logo-ticker {
        margin-top: 0 !important;
      }

      /* Fix: all 4 testimonials accessible on mobile — wrapper must clip */
      body[data-page="index"] .testi-sec {
        overflow: hidden !important;
      }

      body[data-page="index"] .testi-track-wrap {
        overflow: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: calc(100% - 48px) !important;
      }

      body[data-page="index"] .testi-track {
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: none !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 0 !important;
      }

      body[data-page="index"] .testi-track .tc {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
      }
    }

    /* Glassmorphism for sticky header */
    nav.sc {
      background: rgba(255, 255, 255, 0.75) !important;
      backdrop-filter: blur(16px) saturate(150%) !important;
      -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    /* ── Services cards (index page only) ── */
    body[data-page="index"] .svc-list {
      border-top: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
    }

    body[data-page="index"] .svc-row.svc-card-row {
      background: #fff !important;
      border-radius: 16px !important;
      padding: 28px 32px !important;
      margin: 0 !important;
      border: 1px solid rgba(0, 0, 0, 0.06) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      cursor: pointer !important;
      transition: border-color .25s ease !important;
      box-sizing: border-box !important;
      width: 100% !important;
      gap: 16px !important;
    }

    body[data-page="index"] .svc-row.svc-card-row:last-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }

    body[data-page="index"] .svc-row.svc-card-row:hover,
    body[data-page="index"] .svc-row.svc-card-row.on {
      border-color: rgba(0, 0, 0, 0.15) !important;
    }

    body[data-page="index"] .svc-card-row .svc-row-body {
      flex: 1 !important;
    }

    body[data-page="index"] .svc-card-row .svc-row-name {
      font-size: clamp(20px, 2vw, 26px) !important;
      transition: color .25s ease !important;
    }

    body[data-page="index"] .svc-card-row:hover .svc-row-name,
    body[data-page="index"] .svc-card-row.on .svc-row-name {
      color: #7B6CF6 !important;
    }

    body[data-page="index"] .svc-card-row .svc-row-desc {
      font-size: 14px !important;
      color: #777 !important;
      margin-top: 8px !important;
      line-height: 1.55 !important;
      max-width: 100% !important;
    }

    body[data-page="index"] .svc-card-row .svc-row-tags {
      margin-top: 12px !important;
    }

    body[data-page="index"] .svc-card-row .svc-row-arr {
      flex-shrink: 0 !important;
    }

    body[data-page="index"] .mq::before,
    body[data-page="index"] .mq::after {
      display: none !important;
    }

    body[data-page="index"] .mq {
      padding: 80px 0 !important;
    }

    @media(max-width:900px) {
      body[data-page="index"] .mq {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 80px 0 !important;
        overflow: hidden !important;
      }

      body[data-page="index"] .mq .reel-hdr {
        margin-bottom: 20px !important;
      }

      body[data-page="index"] .mq .sub {
        margin-bottom: 0 !important;
      }

      body[data-page="index"] .mq-t,
      body[data-page="index"] .brand-logo-ticker {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        transform: none;
        margin-top: 0 !important;
      }

      body[data-page="index"] .reel-sec .reel-hdr {
        margin-bottom: 24px !important;
      }

      body[data-page="index"] .reel-outer,
      body[data-page="index"] .reel-strip {
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: auto !important;
      }

      body[data-page="index"] .svc-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 30px !important;
        align-items: start !important;
      }

      body[data-page="index"] .svc-img-col {
        display: block !important;
        position: relative !important;
        top: auto !important;
        width: 100% !important;
      }

      body[data-page="index"] .svc-img-frame {
        aspect-ratio: 16/9 !important;
        height: auto !important;
        min-height: 0 !important;
        flex: none !important;
        border-radius: 12px !important;
      }

      body[data-page="index"] .svc-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
      }

      body[data-page="index"] .svc-row.svc-card-row {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: start !important;
        gap: 14px !important;
        padding: 18px !important;
        border-radius: 12px !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-name {
        font-size: clamp(21px, 6vw, 27px) !important;
        line-height: 1.12 !important;
        white-space: normal !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-desc {
        margin-top: 8px !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px 10px !important;
        margin-top: 12px !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags span {
        margin-right: 0 !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-tags span::after {
        content: none !important;
      }

      body[data-page="index"] .svc-card-row .svc-row-arr {
        opacity: 1 !important;
        transform: none !important;
        margin-top: 4px !important;
      }
    }

    @media(max-width:520px) {
      body[data-page="index"] .mq {
        padding: 80px 0 !important;
        min-height: auto !important;
      }

      body[data-page="index"] .mq .reel-hdr {
        margin-bottom: 18px !important;
      }
    }

    /* Final Lightbox Layout */
    .lb-box {
      height: 90vh !important;
      max-height: 800px !important;
      aspect-ratio: 9/16 !important;
      width: auto !important;
      max-width: 90vw !important;
      background: #000 !important;
      display: flex !important;
      flex-direction: column !important;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .14);
      box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
    }

    .lb-video {
      flex: 1 !important;
      height: 100% !important;
      width: 100% !important;
      aspect-ratio: auto !important;
      overflow: hidden;
    }

    .lb-frame {
      width: 100% !important;
      height: 100% !important;
      border: 0;
      display: block;
    }

    .lb-close {
      position: fixed;
      top: 22px;
      right: 22px;
      z-index: 820;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 50%;
      background: rgba(10, 10, 10, .72);
      color: #fff;
      backdrop-filter: blur(14px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    }

    .lb-close svg {
      width: 14px;
      height: 14px;
    }

    .lb-close svg path {
      stroke: currentColor;
    }

    .lb-close:hover {
      background: #fff;
      color: #111;
    }

    @media(max-width:700px) {
      .lb-box {
        width: min(86vw, 430px) !important;
        height: auto !important;
        max-height: calc(100svh - 96px) !important;
        aspect-ratio: 9/16 !important;
      }

      .lb-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
      }
    }

    /* Clean logo ticker layout: remove fixed height, scale square/circle logos proportionally */
    body[data-page="index"] .brand-logo-pill {
      height: auto !important;
      width: auto !important;
      padding: 6px 22px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex: 0 0 auto !important;
    }

    body[data-page="index"] .brand-logo-pill img {
      max-height: 52px !important;
      max-width: 140px !important;
      height: auto !important;
      width: auto !important;
      object-fit: contain !important;
    }

    @media (max-width: 767px) {
      body[data-page="index"] .brand-logo-pill {
        padding: 4px 14px !important;
      }

      body[data-page="index"] .brand-logo-pill img {
        max-height: 38px !important;
        max-width: 110px !important;
      }
    }

    @media (max-width: 900px) {

      section,
      .mq,
      .reel-sec,
      .stats-sec,
      .svc-sec,
      .testi-sec,
      .contact-sec {
        border-top: 0 !important;
        border-bottom: 0 !important;
      }

      hr.rule {
        display: none !important;
      }
    }
  

/* ── CUSTOM BLOG SYSTEM STYLES ── */



/* Page Wrapper */
.blog-page-wrapper {
  position: relative;
  z-index: 1;
  background: #f7ffea;
  padding-bottom: 0px;
}

/* Back Button Wrapper (Left Aligned) */
.bd-back-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 28px 0;
  text-align: left;
}
.bd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.bd-back-btn:hover {
  color: #1A1A1A;
  transform: translateX(-4px);
}

/* Left-Aligned Header Container */
.bd-header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px 20px;
  text-align: left;
}
.bd-cat-badge {
  color: #ff7a59;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
}
.bd-title {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.bd-meta-wrapper {
  display: flex;
  justify-content: flex-start;
}
.bd-post-meta {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.bd-author-name {
  color: #1a1a1a;
  font-weight: 600;
}

/* Cover Image (Cinematic widescreen) */
.bd-cover {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 28px;
  overflow: hidden;
}
.bd-cover-inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.bd-cover img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}
.bd-cover img:hover {
  transform: scale(1.02);
}

/* Layout Columns */
.bd-layout-grid {
  display: grid;
  grid-template-columns: 48px 1fr 340px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 28px;
}

/* Share Bar (Floating sticky on left) */
.bd-share-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
  height: fit-content;
  align-self: flex-start;
  width: 48px;
}
.bd-share-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 4px;
}
.bd-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bd-share-icon:hover {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Main Content Column */
.bd-main-col {
  min-width: 0;
}
.bd-content {
  font-size: 18px;
  line-height: 1.8;
  color: #33475b;
}
.bd-content p {
  margin-bottom: 28px;
}
.bd-content h2 {
  font-family: 'Switzer', sans-serif;
  font-size: 28px;
  color: #1a1a1a;
  margin: 48px 0 20px;
  font-weight: 600;
  line-height: 1.3;
}
.bd-content h3 {
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  color: #1a1a1a;
  margin: 36px 0 16px;
  font-weight: 500;
}

/* Centered content images matching HubSpot/Medium */
.bd-image-wrapper {
  max-width: 680px;
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.bd-content img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.bd-content img:hover {
  transform: scale(1.02);
}

.bd-content blockquote {
  background: rgba(255,122,89,0.03);
  border-left: 4px solid #ff7a59;
  padding: 28px 36px;
  border-radius: 0 8px 8px 0;
  margin: 40px 0;
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.6;
}
.bd-content ul {
  margin-bottom: 28px;
  padding-left: 24px;
  list-style: none;
}
.bd-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}
.bd-content li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #ff7a59;
  border-radius: 50%;
}

/* Sidebar Columns */
.bd-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bd-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.bd-newsletter-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}
.bd-newsletter-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.bd-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bd-subscribe-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 14px;
  outline: none;
  background: #fafafa;
  transition: all 0.3s;
}
.bd-subscribe-input:focus {
  border-color: #ff7a59;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,122,89,0.1);
}
.bd-subscribe-btn {
  background: #1A1A1A;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.bd-subscribe-btn:hover {
  background: #ff7a59;
}

.bd-trending-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 600;
}
.bd-trending-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bd-trending-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.bd-trending-item img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.bd-trending-item h4 {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 2px;
  color: #1a1a1a;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bd-trending-item h4:hover {
  color: #ff7a59;
}
.bd-trending-item span {
  font-size: 11px;
  color: #888;
}

/* Toast Notification styling */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1A1A1A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.toast-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Animations */
.reveal-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Cards Section Styles matching blog.html standard cards */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px;
}
.blog-sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 16px;
}
.blog-sec-header h2 {
  font-size: 28px;
  color: #1A1A1A;
  margin: 0;
  font-weight: 500;
}
.blog-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.card-std {
  display: flex;
  flex-direction: column;
}
.card-std img.thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.card-std h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1A1A1A;
  line-height: 1.3;
}
.card-std h4:hover { opacity: 0.7; }
.card-std p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b-meta.light {
  color: #888;
}
.b-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 12px;
}
.b-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.b-meta-text span {
  display: inline-block;
  margin-right: 8px;
}

@media(max-width: 992px) {
  .bd-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bd-share-bar {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    position: relative;
    top: 0;
    gap: 20px;
    align-self: center;
  }
  .bd-share-title {
    display: none;
  }
  .bd-back-wrapper {
    padding-top: 110px;
  }
  .bd-title {
    font-size: 34px;
  }
  .blog-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 576px) {
  .bd-back-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bd-header-container {
    padding: 30px 20px 20px;
  }
  .bd-cover {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .bd-layout-grid {
    padding: 0 20px;
  }
  .bd-content {
    font-size: 16px;
  }
  .bd-content h2 {
    font-size: 24px;
    margin-top: 40px;
  }
  .bd-content blockquote {
    font-size: 18px;
    padding: 24px 28px;
    margin: 36px 0;
  }
  .blog-grid-4 { grid-template-columns: 1fr; gap: 40px; }
  .blog-sec-header h2 { font-size: 24px; }
  .bd-image-wrapper {
    margin: 24px 0;
  }
}
