    /* ═══════════════════════════════════
       PAGE HERO
    ═══════════════════════════════════ */
    .page-hero {
      padding-top: 50px;
      padding-bottom: 80px;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: 'DIGITAL';
      position: absolute;
      right: 80px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(6rem, 14vw, 14rem);
      color: transparent;
      -webkit-text-stroke: 1px var(--border);
      pointer-events: none;
      white-space: nowrap;
      line-height: 1;
    }

    [data-theme="dark"] .page-hero::before {
      -webkit-text-stroke: 1.5px #2a2a3a;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 20px;
    }

    .hero-eyebrow span {
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--green);
    }

    .page-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 9vw, 8rem);
      line-height: 0.95;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 10px;
    }

    .page-hero h1 em {
      font-style: normal;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--accent2);
    }

    .page-hero-sub {
      font-size: 1.05rem;
      color: var(--text2);
      max-width: 580px;
      line-height: 1.7;
      margin-top: 20px;
    }

    /* ── SECTION BASE ── */
    .section {
      padding: 96px 0;
    }

    .section-alt {
      background: var(--bg2);
    }

    .section-dark {
      background: var(--dark);
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }

    .sec-eyebrow span {
      display: inline-block;
      width: 22px;
      height: 2px;
      background: var(--green);
    }

    .sec-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text);
      line-height: 1.05;
    }

    .sec-heading em {
      font-style: normal;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--accent2);
    }

    .sec-sub {
      font-size: 0.97rem;
      color: var(--text2);
      line-height: 1.7;
      max-width: 560px;
      margin-top: 12px;
    }

    .centered {
      text-align: center;
    }

    .centered .sec-sub {
      margin-left: auto;
      margin-right: auto;
    }

    /* ─── SERVICE NAV SIDEBAR ─── */
    .service-nav-strip {
      background: var(--dark);
      padding: 0;
      border-top: 3px solid var(--green);
    }

    .service-nav-inner {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .service-nav-inner::-webkit-scrollbar {
      display: none;
    }

    .service-nav-inner a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      white-space: nowrap;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.2s, background 0.2s;
    }

    .service-nav-inner a:hover {
      color: var(--green);
      background: rgba(168, 232, 50, 0.05);
    }

    .service-nav-inner a.active {
      color: var(--green);
      background: rgba(168, 232, 50, 0.08);
    }

    .service-nav-inner a i {
      font-size: 1rem;
    }

    /* ─── OVERVIEW SPLIT ─── */
    .overview-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .overview-split {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .overview-img-wrap {
      position: relative;
    }

    .overview-img-main {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }

    .img-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 110px;
      height: 110px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }

    .img-badge strong {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--dark);
      line-height: 1;
    }

    .img-badge span {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--dark);
    }

    @media (max-width: 560px) {
      .overview-img-main {
        height: 260px;
      }
      .img-badge {
        width: 80px;
        height: 80px;
        bottom: -16px;
        right: -10px;
      }

      .img-badge strong {
        font-size: 1.4rem;
      }
    }

    .overview-content p {
      font-size: 0.97rem;
      color: var(--text2);
      line-height: 1.78;
      margin-bottom: 20px;
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 24px 0 30px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--text2);
      line-height: 1.5;
    }

    .check-list li::before {
      content: '✓';
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 900;
      color: var(--dark);
      margin-top: 1px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: var(--dark);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 4px;
      border: none;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    }

    [data-theme="dark"] .btn-primary {
      background: var(--green);
      color: var(--dark);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      opacity: 0.9;
    }

    /* ─── WHAT WE DO GRID ─── */
    .design-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--border);
    }

    @media (max-width: 900px) {
      .design-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        background: transparent;
        padding-bottom: 12px;
      }
      .design-grid::-webkit-scrollbar {
        display: none;
      }
      .design-card {
        flex: 0 0 45%;
        scroll-snap-align: center;
        border-radius: 8px;
        border: 1px solid var(--border);
      }
    }

    @media (max-width: 600px) {
      .design-card {
        flex: 0 0 85%;
      }
    }

    .design-card {
      background: var(--card-bg);
      padding: 40px 30px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .design-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .design-card:hover::after {
      transform: scaleX(1);
    }

    .design-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(168, 232, 50, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--green);
      margin-bottom: 20px;
    }

    .design-card h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 10px;
    }

    .design-card p {
      font-size: 0.84rem;
      color: var(--text2);
      line-height: 1.6;
    }

    .design-card-num {
      position: absolute;
      top: 16px;
      right: 20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--border);
      transition: color 0.3s;
    }

    .design-card:hover .design-card-num {
      color: rgba(168, 232, 50, 0.15);
    }

    /* ─── FAQ ─── */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      text-align: left;
    }

    .faq-q span {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg2);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--green);
      transition: background 0.25s, transform 0.35s;
    }

    .faq-item.open .faq-icon {
      background: var(--green);
      color: var(--dark);
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.open .faq-a {
      max-height: 260px;
    }

    .faq-a p {
      font-size: 0.9rem;
      color: var(--text2);
      line-height: 1.72;
      padding-bottom: 22px;
    }

    /* ─── CONTACT BAND ─── */
    .contact-band {
      padding: 20px;
      text-align: center;
    }

    .contact-band h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 50px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--dark);
      line-height: 1;
      margin-bottom: 16px;
    }

    .contact-band h2 em {
      font-style: normal;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--accent2);
    }

    .contact-band p {
      font-size: 1rem;
      color: rgba(10, 10, 15, 0.6);
      margin-bottom: 36px;
    }

    .contact-band .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--dark);
      color: var(--green);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 4px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .contact-band .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    }

    /* ─── MOBILE NAV RESPONSIVE ─── */
    @media (max-width: 768px) {
      .page-hero {
        padding-top: 155px !important;
        padding-bottom: 24px;
      }
      .section {
        padding: 48px 0;
      }
    }

    @media (max-width: 700px) {
      .reveal>div[style*="repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
      }

      .reveal>div[style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
      }
    }
